diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-12-20 19:20:36 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-12-20 19:20:36 -0200 |
commit | 8cb8594a3bcfdc1447aebfcd0ac85db9af5ca490 (patch) | |
tree | 13d09f704662cafa2597e77c92611b468e4741c9 /tree.h | |
parent | fe8338335dfb4bf37e6b164cb55bfcc94ec6563d (diff) | |
download | lua-8cb8594a3bcfdc1447aebfcd0ac85db9af5ca490.tar.gz lua-8cb8594a3bcfdc1447aebfcd0ac85db9af5ca490.tar.bz2 lua-8cb8594a3bcfdc1447aebfcd0ac85db9af5ca490.zip |
better control of integer types and their limits
Diffstat (limited to 'tree.h')
-rw-r--r-- | tree.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,12 +1,13 @@ | |||
1 | /* | 1 | /* |
2 | ** tree.h | 2 | ** tree.h |
3 | ** TecCGraf - PUC-Rio | 3 | ** TecCGraf - PUC-Rio |
4 | ** $Id: tree.h,v 1.6 1994/11/23 14:31:11 roberto Stab roberto $ | 4 | ** $Id: tree.h,v 1.7 1994/11/25 19:27:03 roberto Exp roberto $ |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #ifndef tree_h | 7 | #ifndef tree_h |
8 | #define tree_h | 8 | #define tree_h |
9 | 9 | ||
10 | #include "types.h" | ||
10 | 11 | ||
11 | #define NOT_USED 0xFFFE | 12 | #define NOT_USED 0xFFFE |
12 | 13 | ||
@@ -30,7 +31,7 @@ typedef struct TreeNode | |||
30 | 31 | ||
31 | TaggedString *lua_createstring (char *str); | 32 | TaggedString *lua_createstring (char *str); |
32 | TreeNode *lua_constcreate (char *str); | 33 | TreeNode *lua_constcreate (char *str); |
33 | int lua_strcollector (void); | 34 | Word lua_strcollector (void); |
34 | TreeNode *lua_varnext (char *n); | 35 | TreeNode *lua_varnext (char *n); |
35 | 36 | ||
36 | #endif | 37 | #endif |