aboutsummaryrefslogtreecommitdiff
path: root/lstring.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-03-22 14:06:11 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-03-22 14:06:11 -0300
commit9fa63a62682c1353eeabd4575152941fa6f3e70f (patch)
tree1aad2dd0de78388f6be134399ae4183692ce377f /lstring.h
parent0593256707ceddb1bc9cd4b25b822a7fbcfedd66 (diff)
downloadlua-9fa63a62682c1353eeabd4575152941fa6f3e70f.tar.gz
lua-9fa63a62682c1353eeabd4575152941fa6f3e70f.tar.bz2
lua-9fa63a62682c1353eeabd4575152941fa6f3e70f.zip
Some 'unsigned int' changed to 'unsigned'
'unsigned int' is too long sometimes. (We already write 'long' instead of 'long int'...)
Diffstat (limited to 'lstring.h')
-rw-r--r--lstring.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lstring.h b/lstring.h
index e321bd43..b7226d83 100644
--- a/lstring.h
+++ b/lstring.h
@@ -43,8 +43,8 @@
43#define eqshrstr(a,b) check_exp((a)->tt == LUA_VSHRSTR, (a) == (b)) 43#define eqshrstr(a,b) check_exp((a)->tt == LUA_VSHRSTR, (a) == (b))
44 44
45 45
46LUAI_FUNC unsigned int luaS_hash (const char *str, size_t l, unsigned int seed); 46LUAI_FUNC unsigned luaS_hash (const char *str, size_t l, unsigned seed);
47LUAI_FUNC unsigned int luaS_hashlongstr (TString *ts); 47LUAI_FUNC unsigned luaS_hashlongstr (TString *ts);
48LUAI_FUNC int luaS_eqlngstr (TString *a, TString *b); 48LUAI_FUNC int luaS_eqlngstr (TString *a, TString *b);
49LUAI_FUNC void luaS_resize (lua_State *L, int newsize); 49LUAI_FUNC void luaS_resize (lua_State *L, int newsize);
50LUAI_FUNC void luaS_clearcache (global_State *g); 50LUAI_FUNC void luaS_clearcache (global_State *g);