annotate src/lua-test.c @ 2351:8a6c466753e2

Improve comment style of all test programs
author Volker Grabsch <vog@notjusthosting.com>
date Thu, 29 Mar 2012 12:01:39 +0200
parents f653602a0500
children 99516e73b368
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2351
8a6c466753e2 Improve comment style of all test programs
Volker Grabsch <vog@notjusthosting.com>
parents: 2333
diff changeset
1 /*
8a6c466753e2 Improve comment style of all test programs
Volker Grabsch <vog@notjusthosting.com>
parents: 2333
diff changeset
2 * This file is part of MXE.
8a6c466753e2 Improve comment style of all test programs
Volker Grabsch <vog@notjusthosting.com>
parents: 2333
diff changeset
3 * See doc/index.html for further information.
8a6c466753e2 Improve comment style of all test programs
Volker Grabsch <vog@notjusthosting.com>
parents: 2333
diff changeset
4 */
1475
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
5
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
6 #include <stdio.h>
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
7 #include <lua.h>
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
8 #include <lauxlib.h>
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
9
1476
aada6ecef7dd adjusted coding style of the test program of package lua
Volker Grabsch <vog@notjusthosting.com>
parents: 1475
diff changeset
10 int main(int argc, char *argv[])
aada6ecef7dd adjusted coding style of the test program of package lua
Volker Grabsch <vog@notjusthosting.com>
parents: 1475
diff changeset
11 {
aada6ecef7dd adjusted coding style of the test program of package lua
Volker Grabsch <vog@notjusthosting.com>
parents: 1475
diff changeset
12 lua_State *L;
aada6ecef7dd adjusted coding style of the test program of package lua
Volker Grabsch <vog@notjusthosting.com>
parents: 1475
diff changeset
13
1475
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
14 (void)argc;
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
15 (void)argv;
1476
aada6ecef7dd adjusted coding style of the test program of package lua
Volker Grabsch <vog@notjusthosting.com>
parents: 1475
diff changeset
16
aada6ecef7dd adjusted coding style of the test program of package lua
Volker Grabsch <vog@notjusthosting.com>
parents: 1475
diff changeset
17 L = lua_open();
1475
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
18 lua_close(L);
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
19 return 0;
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
20 }