I noticed that there was (at least on Mac OS X) both a string.h header and a strings.h header. man 3 string reveals that they contain different functions. Is there any reason for this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
strings.h comes from the BSD branch in the unix evolution. Its content has been standardized by POSIX, but most of it is marked as legacy and can be easily replaced with other functions:
|
|||
|
Typically |
|||||
|
strings.hcontains nonstandard functionsbcmp bcopy bzero ffs index rindex strcasecmp strncasecmp… and that's it. – Potatoswatter Nov 27 '10 at 10:28