diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-16 15:55:19 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-16 15:55:19 -0400 |
commit | e223e635cc53fa11e473cdbc864eb69a3da5f290 (patch) | |
tree | d481ca6fb0b7f4184f3ec259a6f9c37d76e56a26 /src/stdio/printf_s.c | |
parent | 700fbd205a1a428677876d322606b9a354221892 (diff) |
add skeleton of symbols from C11 LIB_EXT1
Diffstat (limited to 'src/stdio/printf_s.c')
-rw-r--r-- | src/stdio/printf_s.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/stdio/printf_s.c b/src/stdio/printf_s.c new file mode 100644 index 00000000..b5917062 --- /dev/null +++ b/src/stdio/printf_s.c @@ -0,0 +1,32 @@ +#include "stdio.h" +#include "stdarg.h" + +/** write formatted output **/ +int printf_s(const char *format, ...) +{ + __C_EXT(1, 201112L); + int retval; + va_list ap; + va_start(ap, format); + retval = vfprintf_s(stdout, format, ap); + va_end(ap); + return retval; +} + +/*** +The fn(fprintf) function writes a formatted string to macro(stdout). + +FIXME: printf format goes here +***/ + +/* UNSPECIFIED: ??? */ +/* UNDEFINED: ??? */ +/* IMPLEMENTATION: ??? */ +/* LOCALE: ??? */ + +/* RETURN(NEG): an error occurred */ +/* RETURN: the number of characters written */ + +/* +CEXT1(201112) +*/ |