wifi-tally_Oostendam/nodemcu-firmware/app/libc/c99-snprintf/system.h

24 lines
588 B
C
Raw Normal View History

2021-09-27 19:52:27 +00:00
#ifndef SYSTEM_H
#define SYSTEM_H
#if HAVE_CONFIG_H
#include <config.h>
#endif /* HAVE_CONFIG_H */
#if HAVE_STDARG_H
#include <stdarg.h>
#if !HAVE_VSNPRINTF
int rpl_vsnprintf(char *, size_t, const char *, va_list);
#endif /* !HAVE_VSNPRINTF */
#if !HAVE_SNPRINTF
int rpl_snprintf(char *, size_t, const char *, ...);
#endif /* !HAVE_SNPRINTF */
#if !HAVE_VASPRINTF
int rpl_vasprintf(char **, const char *, va_list);
#endif /* !HAVE_VASPRINTF */
#if !HAVE_ASPRINTF
int rpl_asprintf(char **, const char *, ...);
#endif /* !HAVE_ASPRINTF */
#endif /* HAVE_STDARG_H */
#endif /* SYSTEM_H */