diff options
Diffstat (limited to 'luamem.c')
| -rw-r--r-- | luamem.c | 12 |
1 files changed, 11 insertions, 1 deletions
| @@ -3,7 +3,7 @@ | |||
| 3 | ** TecCGraf - PUC-Rio | 3 | ** TecCGraf - PUC-Rio |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | char *rcs_mem = "$Id: mem.c,v 1.7 1996/02/04 16:59:12 roberto Exp roberto $"; | 6 | char *rcs_mem = "$Id: mem.c,v 1.8 1996/02/22 20:34:33 roberto Exp roberto $"; |
| 7 | 7 | ||
| 8 | #include <stdlib.h> | 8 | #include <stdlib.h> |
| 9 | #include <string.h> | 9 | #include <string.h> |
| @@ -53,3 +53,13 @@ void *luaI_realloc (void *oldblock, unsigned long size) | |||
| 53 | return block; | 53 | return block; |
| 54 | } | 54 | } |
| 55 | 55 | ||
| 56 | |||
| 57 | void* luaI_buffer (unsigned long size) | ||
| 58 | { | ||
| 59 | static unsigned long buffsize = 0; | ||
| 60 | static char* buffer = NULL; | ||
| 61 | if (size > buffsize) | ||
| 62 | buffer = luaI_realloc(buffer, buffsize=size); | ||
| 63 | return buffer; | ||
| 64 | } | ||
| 65 | |||
