#ifndef JOVE_LIB_FORMAT_H #define JOVE_LIB_FORMAT_H 1 #include #include size_t ltostr(char *s, size_t limit, unsigned long l, bool sgn, int radix); char *sfmt(char *s, size_t limit, const char *fmt, ...); #include char *svfmt(char *s, size_t limit, const char *fmt, va_list ap); #endif