diff options
Diffstat (limited to 'lib/util/nstring.h')
-rw-r--r-- | lib/util/nstring.h | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/lib/util/nstring.h b/lib/util/nstring.h index 1f03e4f2..7ade39ef 100644 --- a/lib/util/nstring.h +++ b/lib/util/nstring.h @@ -128,8 +128,7 @@ strncaseeq(const char * const comparand, subroutines whose names are similar. They're here because not all standard C libraries have them. - The GNU C library has all of them. All but the oldest standard C libraries - have snprintf(). + The GNU C library has all of them. There are slight differences between the asprintf() family and that found in other libraries: @@ -155,19 +154,6 @@ size_t pm_strnlen(const char * const s, size_t const maxlen); -int -pm_snprintf(char * const dest, - size_t const maxSize, - const char * const fmt, - ...) PM_GNU_PRINTF_ATTR(3,4); - -void -pm_vsnprintf(char * const str, - size_t const maxSize, - const char * const fmt, - va_list ap, - size_t * const sizeP); - const char * pm_strdup(const char * const arg); |