misc/liblua/lundump.h
changeset 10017 de822cd3df3a
parent 2812 0a24853de796
equal deleted inserted replaced
10015:4feced261c68 10017:de822cd3df3a
    23 /* print one chunk; from print.c */
    23 /* print one chunk; from print.c */
    24 LUAI_FUNC void luaU_print (const Proto* f, int full);
    24 LUAI_FUNC void luaU_print (const Proto* f, int full);
    25 #endif
    25 #endif
    26 
    26 
    27 /* for header of binary files -- this is Lua 5.1 */
    27 /* for header of binary files -- this is Lua 5.1 */
    28 #define LUAC_VERSION		0x51
    28 #define LUAC_VERSION        0x51
    29 
    29 
    30 /* for header of binary files -- this is the official format */
    30 /* for header of binary files -- this is the official format */
    31 #define LUAC_FORMAT		0
    31 #define LUAC_FORMAT     0
    32 
    32 
    33 /* size of header of binary files */
    33 /* size of header of binary files */
    34 #define LUAC_HEADERSIZE		12
    34 #define LUAC_HEADERSIZE     12
    35 
    35 
    36 #endif
    36 #endif