diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2018-04-25 23:43:04 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2018-04-25 23:43:04 +0000 |
commit | 3210ab84690cacdf000d4a15438321907cdf7ba2 (patch) | |
tree | 2b07b5c1a095370a65cf25a2781b7720c37000b4 /lib | |
parent | bb9e9503f46ac7c10de38c8cb5201fd253108f00 (diff) | |
download | netpbm-mirror-3210ab84690cacdf000d4a15438321907cdf7ba2.tar.gz netpbm-mirror-3210ab84690cacdf000d4a15438321907cdf7ba2.tar.xz netpbm-mirror-3210ab84690cacdf000d4a15438321907cdf7ba2.zip |
whitespace
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@3208 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util/nstring.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/util/nstring.h b/lib/util/nstring.h index 9801ca17..8c3da40a 100644 --- a/lib/util/nstring.h +++ b/lib/util/nstring.h @@ -60,7 +60,7 @@ static __inline__ int memeq(const void * const comparand, const void * const comparator, size_t const size) { - + return memcmp(comparand, comparator, size) == 0; } @@ -92,7 +92,7 @@ strncaseeq(const char * const comparand, #endif -/* The standard C library routines isdigit(), for some weird +/* The standard C library routines isdigit(), for some weird historical reason, does not take a character (type 'char') as its argument. Instead it takes an integer. When the integer is a whole number, it represents a character in the obvious way using the local @@ -132,7 +132,7 @@ strncaseeq(const char * const comparand, Netpbm must include them in its own libraries, and because some standard C libraries have some of them, Netpbm must use different names for them. - + The GNU C library has all of them. All but the oldest standard C libraries have snprintf(). @@ -189,7 +189,7 @@ pm_vasprintf(const char ** const resultP, bool pm_vasprintf_knows_float(void); -void +void pm_strfree(const char * const string); const char * |