File: main.c

package info (click to toggle)
lua-dbi 0.7.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 448 kB
  • sloc: ansic: 3,946; sql: 291; makefile: 129
file content (15 lines) | stat: -rw-r--r-- 237 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "dbd_db2.h"

int dbd_db2_connection(lua_State *L);
int dbd_db2_statement(lua_State *L);

/*
 * library entry point
 */
LUA_EXPORT int luaopen_dbd_db2(lua_State *L) {
	dbd_db2_statement(L);
	dbd_db2_connection(L);

	return 1;
}