diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-11-13 13:20:27 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-11-13 13:20:27 +0100 |
commit | 52fa6524095017559e023db21898d1e2938d8b55 (patch) | |
tree | f406d04591a9a202154addf38abca96f968bc13f | |
parent | m (diff) | |
download | slibc-52fa6524095017559e023db21898d1e2938d8b55.tar.gz slibc-52fa6524095017559e023db21898d1e2938d8b55.tar.bz2 slibc-52fa6524095017559e023db21898d1e2938d8b55.tar.xz |
add todos
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | include/stdio.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/include/stdio.h b/include/stdio.h index 3fa1bfe..c092440 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -186,6 +186,12 @@ int sprintf(char* restrict, const char* restrict, ...) int snprintf(char* restrict, size_t, const char* restrict, ...) __GCC_ONLY(__attribute__((__nonnull__(3), __format__(__slibc_printf__, 3, 4)))); +/* TODO plan9: char* seprintf(char* start, char* end, const char* restrict format, ...) + ~= start + snprintf(start, end - start, format, ...) + TODO plan9: char* smprintf(const char* restrict format, ...) + ~= asprintf(&r, format, ...), r; + */ + #if defined(__GNU_SOURCE) /** * This function is identical to `sprintf`, @@ -440,6 +446,12 @@ int vsprintf(char* restrict, const char* restrict, va_list) int vsnprintf(char* restrict, size_t, const char* restrict, va_list) __GCC_ONLY(__attribute__((__nonnull__(3)))); +/* TODO plan9: char* vseprintf(char* start, char* end, const char* restrict format, va_list args) + ~= start + vsnprintf(start, end - start, format, args) + TODO plan9: char* vsmprintf(const char* restrict format, va_list args) + ~= vasprintf(&r, format, args), r; + */ + #if defined(__GNU_SOURCE) /** * This function is identical to `asprintf`, @@ -633,6 +645,12 @@ int dwprintf(int, const wchar_t* restrict, ...) int swprintf(wchar_t* restrict, size_t, const wchar_t* restrict, ...) __GCC_ONLY(__attribute__((__nonnull__(3)))); +/* TODO plan9 derived: char* sewprintf(wchar_t* start, wchar_t* end, const wchar_t* restrict format, ...) + ~= start + swprintf(start, end - start, format, ...) + TODO plan9 derived: char* smwprintf(const wchar_t* restrict format, ...) + ~= aswprintf(&r, format, ...), r; + */ + # if defined(__GNU_SOURCE) && defined(__SLIBC_SOURCE) /** * This function is identical to `aswprintf` except @@ -869,6 +887,12 @@ int vdwprintf(int, const wchar_t* restrict, va_list) int vswprintf(wchar_t* restrict, size_t, const wchar_t* restrict, va_list) __GCC_ONLY(__attribute__((__nonnull__(3)))); +/* TODO plan9 derived: char* vsewprintf(wchar_t* start, wchar_t* end, const wchar_t* restrict format, va_list args) + ~= start + vswprintf(start, end - start, format, args) + TODO plan9 derived: char* vsmwprintf(const wchar_t* restrict format, va_list args) + ~= vaswprintf(&r, format, args), r; + */ + # if defined(__GNU_SOURCE) && defined(__SLIBC_SOURCE) /** * This function is identical to `aswprintf`, |