dbd/postgresql/main.c

Sun, 23 Nov 2008 04:12:04 +0000

author
nrich@ii.net
date
Sun, 23 Nov 2008 04:12:04 +0000
changeset 2
c4f02fc67e5a
parent 1
408291a6eb3e
child 33
6c64c45e7d8f
permissions
-rw-r--r--

Cleanup and commenting

#include "dbd_postgresql.h"

int dbd_postgresql_connection(lua_State *L);
int dbd_postgresql_statement(lua_State *L);

/*
 * library entry point
 */
int luaopen_dbdpostgresql(lua_State *L) {
    dbd_postgresql_connection(L);
    dbd_postgresql_statement(L); 

    return 1;
}

mercurial