diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-06-07 11:51:10 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-06-07 11:51:10 -0300 |
commit | c5069528e1da3d4651f167011404bcf388ba1c71 (patch) | |
tree | de0df5cad9b45a58fed1c60e7c31cc3eb5ded461 /lua.h | |
parent | 6fb0b1135090b1e4543438c56ae3e444abb5477d (diff) | |
download | lua-c5069528e1da3d4651f167011404bcf388ba1c71.tar.gz lua-c5069528e1da3d4651f167011404bcf388ba1c71.tar.bz2 lua-c5069528e1da3d4651f167011404bcf388ba1c71.zip |
details ('Type* id' -> 'Type *id')
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.288 2013/04/26 15:39:25 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.289 2013/05/14 16:00:11 roberto Exp roberto $ |
3 | ** Lua - A Scripting Language | 3 | ** Lua - A Scripting Language |
4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) | 4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) |
5 | ** See Copyright Notice at the end of this file | 5 | ** See Copyright Notice at the end of this file |
@@ -61,7 +61,7 @@ typedef int (*lua_CFunction) (lua_State *L); | |||
61 | */ | 61 | */ |
62 | typedef const char * (*lua_Reader) (lua_State *L, void *ud, size_t *sz); | 62 | typedef const char * (*lua_Reader) (lua_State *L, void *ud, size_t *sz); |
63 | 63 | ||
64 | typedef int (*lua_Writer) (lua_State *L, const void* p, size_t sz, void* ud); | 64 | typedef int (*lua_Writer) (lua_State *L, const void *p, size_t sz, void *ud); |
65 | 65 | ||
66 | 66 | ||
67 | /* | 67 | /* |