At 06:32 PM 4/7/2002 -0400, Roman Hunt wrote: >Hello all: > I was just begining work on the string api and was wondering what > libraries are allowed for use inside the interpreter. Mainly > I want to know if I can use <stdarg.h>
I would expect that should be fine, stdarg is one of the 4 headers that are guaranteed by ANSI C89 even on a free standing environment (read embedded targets, etc.) Its integral to C, and if you don't have it, I suppose the question would be why we should port to it. -Melvin