comparison runtime/context.h @ 52:079200bc3e75

String literals almost working. Print moved out of C runtime.
author Mike Pavone <pavone@retrodev.com>
date Wed, 28 Apr 2010 01:23:30 -0400
parents 8d74ef7fa357
children 70af7fa155d0
comparison
equal deleted inserted replaced
51:7d6a6906b648 52:079200bc3e75
28 stackchunk * new_stack(); 28 stackchunk * new_stack();
29 context * new_context(); 29 context * new_context();
30 void * alloc_stack(context * ct, uint32_t size); 30 void * alloc_stack(context * ct, uint32_t size);
31 struct calldata * alloc_cdata(context * ct, uint32_t num_params); 31 struct calldata * alloc_cdata(context * ct, uint32_t num_params);
32 void free_stack(context * ct, void * data); 32 void free_stack(context * ct, void * data);
33 void free_context(context * c);
33 #endif //_CONTEXT_H_ 34 #endif //_CONTEXT_H_