string.texi 129 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108
  1. @node String and Array Utilities, Character Set Handling, Character Handling, Top
  2. @c %MENU% Utilities for copying and comparing strings and arrays
  3. @chapter String and Array Utilities
  4. Operations on strings (null-terminated byte sequences) are an important part of
  5. many programs. @Theglibc{} provides an extensive set of string
  6. utility functions, including functions for copying, concatenating,
  7. comparing, and searching strings. Many of these functions can also
  8. operate on arbitrary regions of storage; for example, the @code{memcpy}
  9. function can be used to copy the contents of any kind of array.
  10. It's fairly common for beginning C programmers to ``reinvent the wheel''
  11. by duplicating this functionality in their own code, but it pays to
  12. become familiar with the library functions and to make use of them,
  13. since this offers benefits in maintenance, efficiency, and portability.
  14. For instance, you could easily compare one string to another in two
  15. lines of C code, but if you use the built-in @code{strcmp} function,
  16. you're less likely to make a mistake. And, since these library
  17. functions are typically highly optimized, your program may run faster
  18. too.
  19. @menu
  20. * Representation of Strings:: Introduction to basic concepts.
  21. * String/Array Conventions:: Whether to use a string function or an
  22. arbitrary array function.
  23. * String Length:: Determining the length of a string.
  24. * Copying Strings and Arrays:: Functions to copy strings and arrays.
  25. * Concatenating Strings:: Functions to concatenate strings while copying.
  26. * Truncating Strings:: Functions to truncate strings while copying.
  27. * String/Array Comparison:: Functions for byte-wise and character-wise
  28. comparison.
  29. * Collation Functions:: Functions for collating strings.
  30. * Search Functions:: Searching for a specific element or substring.
  31. * Finding Tokens in a String:: Splitting a string into tokens by looking
  32. for delimiters.
  33. * Erasing Sensitive Data:: Clearing memory which contains sensitive
  34. data, after it's no longer needed.
  35. * Shuffling Bytes:: Or how to flash-cook a string.
  36. * Obfuscating Data:: Reversibly obscuring data from casual view.
  37. * Encode Binary Data:: Encoding and Decoding of Binary Data.
  38. * Argz and Envz Vectors:: Null-separated string vectors.
  39. @end menu
  40. @node Representation of Strings
  41. @section Representation of Strings
  42. @cindex string, representation of
  43. This section is a quick summary of string concepts for beginning C
  44. programmers. It describes how strings are represented in C
  45. and some common pitfalls. If you are already familiar with this
  46. material, you can skip this section.
  47. @cindex string
  48. A @dfn{string} is a null-terminated array of bytes of type @code{char},
  49. including the terminating null byte. String-valued
  50. variables are usually declared to be pointers of type @code{char *}.
  51. Such variables do not include space for the contents of a string; that has
  52. to be stored somewhere else---in an array variable, a string constant,
  53. or dynamically allocated memory (@pxref{Memory Allocation}). It's up to
  54. you to store the address of the chosen memory space into the pointer
  55. variable. Alternatively you can store a @dfn{null pointer} in the
  56. pointer variable. The null pointer does not point anywhere, so
  57. attempting to reference the string it points to gets an error.
  58. @cindex multibyte character
  59. @cindex multibyte string
  60. @cindex wide string
  61. A @dfn{multibyte character} is a sequence of one or more bytes that
  62. represents a single character using the locale's encoding scheme; a
  63. null byte always represents the null character. A @dfn{multibyte
  64. string} is a string that consists entirely of multibyte
  65. characters. In contrast, a @dfn{wide string} is a null-terminated
  66. sequence of @code{wchar_t} objects. A wide-string variable is usually
  67. declared to be a pointer of type @code{wchar_t *}, by analogy with
  68. string variables and @code{char *}. @xref{Extended Char Intro}.
  69. @cindex null byte
  70. @cindex null wide character
  71. By convention, the @dfn{null byte}, @code{'\0'},
  72. marks the end of a string and the @dfn{null wide character},
  73. @code{L'\0'}, marks the end of a wide string. For example, in
  74. testing to see whether the @code{char *} variable @var{p} points to a
  75. null byte marking the end of a string, you can write
  76. @code{!*@var{p}} or @code{*@var{p} == '\0'}.
  77. A null byte is quite different conceptually from a null pointer,
  78. although both are represented by the integer constant @code{0}.
  79. @cindex string literal
  80. A @dfn{string literal} appears in C program source as a multibyte
  81. string between double-quote characters (@samp{"}). If the
  82. initial double-quote character is immediately preceded by a capital
  83. @samp{L} (ell) character (as in @code{L"foo"}), it is a wide string
  84. literal. String literals can also contribute to @dfn{string
  85. concatenation}: @code{"a" "b"} is the same as @code{"ab"}.
  86. For wide strings one can use either
  87. @code{L"a" L"b"} or @code{L"a" "b"}. Modification of string literals is
  88. not allowed by the GNU C compiler, because literals are placed in
  89. read-only storage.
  90. Arrays that are declared @code{const} cannot be modified
  91. either. It's generally good style to declare non-modifiable string
  92. pointers to be of type @code{const char *}, since this often allows the
  93. C compiler to detect accidental modifications as well as providing some
  94. amount of documentation about what your program intends to do with the
  95. string.
  96. The amount of memory allocated for a byte array may extend past the null byte
  97. that marks the end of the string that the array contains. In this
  98. document, the term @dfn{allocated size} is always used to refer to the
  99. total amount of memory allocated for an array, while the term
  100. @dfn{length} refers to the number of bytes up to (but not including)
  101. the terminating null byte. Wide strings are similar, except their
  102. sizes and lengths count wide characters, not bytes.
  103. @cindex length of string
  104. @cindex allocation size of string
  105. @cindex size of string
  106. @cindex string length
  107. @cindex string allocation
  108. A notorious source of program bugs is trying to put more bytes into a
  109. string than fit in its allocated size. When writing code that extends
  110. strings or moves bytes into a pre-allocated array, you should be
  111. very careful to keep track of the length of the string and make explicit
  112. checks for overflowing the array. Many of the library functions
  113. @emph{do not} do this for you! Remember also that you need to allocate
  114. an extra byte to hold the null byte that marks the end of the
  115. string.
  116. @cindex single-byte string
  117. @cindex multibyte string
  118. Originally strings were sequences of bytes where each byte represented a
  119. single character. This is still true today if the strings are encoded
  120. using a single-byte character encoding. Things are different if the
  121. strings are encoded using a multibyte encoding (for more information on
  122. encodings see @ref{Extended Char Intro}). There is no difference in
  123. the programming interface for these two kind of strings; the programmer
  124. has to be aware of this and interpret the byte sequences accordingly.
  125. But since there is no separate interface taking care of these
  126. differences the byte-based string functions are sometimes hard to use.
  127. Since the count parameters of these functions specify bytes a call to
  128. @code{memcpy} could cut a multibyte character in the middle and put an
  129. incomplete (and therefore unusable) byte sequence in the target buffer.
  130. @cindex wide string
  131. To avoid these problems later versions of the @w{ISO C} standard
  132. introduce a second set of functions which are operating on @dfn{wide
  133. characters} (@pxref{Extended Char Intro}). These functions don't have
  134. the problems the single-byte versions have since every wide character is
  135. a legal, interpretable value. This does not mean that cutting wide
  136. strings at arbitrary points is without problems. It normally
  137. is for alphabet-based languages (except for non-normalized text) but
  138. languages based on syllables still have the problem that more than one
  139. wide character is necessary to complete a logical unit. This is a
  140. higher level problem which the @w{C library} functions are not designed
  141. to solve. But it is at least good that no invalid byte sequences can be
  142. created. Also, the higher level functions can also much more easily operate
  143. on wide characters than on multibyte characters so that a common strategy
  144. is to use wide characters internally whenever text is more than simply
  145. copied.
  146. The remaining of this chapter will discuss the functions for handling
  147. wide strings in parallel with the discussion of
  148. strings since there is almost always an exact equivalent
  149. available.
  150. @node String/Array Conventions
  151. @section String and Array Conventions
  152. This chapter describes both functions that work on arbitrary arrays or
  153. blocks of memory, and functions that are specific to strings and wide
  154. strings.
  155. Functions that operate on arbitrary blocks of memory have names
  156. beginning with @samp{mem} and @samp{wmem} (such as @code{memcpy} and
  157. @code{wmemcpy}) and invariably take an argument which specifies the size
  158. (in bytes and wide characters respectively) of the block of memory to
  159. operate on. The array arguments and return values for these functions
  160. have type @code{void *} or @code{wchar_t *}. As a matter of style, the
  161. elements of the arrays used with the @samp{mem} functions are referred
  162. to as ``bytes''. You can pass any kind of pointer to these functions,
  163. and the @code{sizeof} operator is useful in computing the value for the
  164. size argument. Parameters to the @samp{wmem} functions must be of type
  165. @code{wchar_t *}. These functions are not really usable with anything
  166. but arrays of this type.
  167. In contrast, functions that operate specifically on strings and wide
  168. strings have names beginning with @samp{str} and @samp{wcs}
  169. respectively (such as @code{strcpy} and @code{wcscpy}) and look for a
  170. terminating null byte or null wide character instead of requiring an explicit
  171. size argument to be passed. (Some of these functions accept a specified
  172. maximum length, but they also check for premature termination.)
  173. The array arguments and return values for these
  174. functions have type @code{char *} and @code{wchar_t *} respectively, and
  175. the array elements are referred to as ``bytes'' and ``wide
  176. characters''.
  177. In many cases, there are both @samp{mem} and @samp{str}/@samp{wcs}
  178. versions of a function. The one that is more appropriate to use depends
  179. on the exact situation. When your program is manipulating arbitrary
  180. arrays or blocks of storage, then you should always use the @samp{mem}
  181. functions. On the other hand, when you are manipulating
  182. strings it is usually more convenient to use the @samp{str}/@samp{wcs}
  183. functions, unless you already know the length of the string in advance.
  184. The @samp{wmem} functions should be used for wide character arrays with
  185. known size.
  186. @cindex wint_t
  187. @cindex parameter promotion
  188. Some of the memory and string functions take single characters as
  189. arguments. Since a value of type @code{char} is automatically promoted
  190. into a value of type @code{int} when used as a parameter, the functions
  191. are declared with @code{int} as the type of the parameter in question.
  192. In case of the wide character functions the situation is similar: the
  193. parameter type for a single wide character is @code{wint_t} and not
  194. @code{wchar_t}. This would for many implementations not be necessary
  195. since @code{wchar_t} is large enough to not be automatically
  196. promoted, but since the @w{ISO C} standard does not require such a
  197. choice of types the @code{wint_t} type is used.
  198. @node String Length
  199. @section String Length
  200. You can get the length of a string using the @code{strlen} function.
  201. This function is declared in the header file @file{string.h}.
  202. @pindex string.h
  203. @deftypefun size_t strlen (const char *@var{s})
  204. @standards{ISO, string.h}
  205. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  206. The @code{strlen} function returns the length of the
  207. string @var{s} in bytes. (In other words, it returns the offset of the
  208. terminating null byte within the array.)
  209. For example,
  210. @smallexample
  211. strlen ("hello, world")
  212. @result{} 12
  213. @end smallexample
  214. When applied to an array, the @code{strlen} function returns
  215. the length of the string stored there, not its allocated size. You can
  216. get the allocated size of the array that holds a string using
  217. the @code{sizeof} operator:
  218. @smallexample
  219. char string[32] = "hello, world";
  220. sizeof (string)
  221. @result{} 32
  222. strlen (string)
  223. @result{} 12
  224. @end smallexample
  225. But beware, this will not work unless @var{string} is the
  226. array itself, not a pointer to it. For example:
  227. @smallexample
  228. char string[32] = "hello, world";
  229. char *ptr = string;
  230. sizeof (string)
  231. @result{} 32
  232. sizeof (ptr)
  233. @result{} 4 /* @r{(on a machine with 4 byte pointers)} */
  234. @end smallexample
  235. This is an easy mistake to make when you are working with functions that
  236. take string arguments; those arguments are always pointers, not arrays.
  237. It must also be noted that for multibyte encoded strings the return
  238. value does not have to correspond to the number of characters in the
  239. string. To get this value the string can be converted to wide
  240. characters and @code{wcslen} can be used or something like the following
  241. code can be used:
  242. @smallexample
  243. /* @r{The input is in @code{string}.}
  244. @r{The length is expected in @code{n}.} */
  245. @{
  246. mbstate_t t;
  247. char *scopy = string;
  248. /* In initial state. */
  249. memset (&t, '\0', sizeof (t));
  250. /* Determine number of characters. */
  251. n = mbsrtowcs (NULL, &scopy, strlen (scopy), &t);
  252. @}
  253. @end smallexample
  254. This is cumbersome to do so if the number of characters (as opposed to
  255. bytes) is needed often it is better to work with wide characters.
  256. @end deftypefun
  257. The wide character equivalent is declared in @file{wchar.h}.
  258. @deftypefun size_t wcslen (const wchar_t *@var{ws})
  259. @standards{ISO, wchar.h}
  260. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  261. The @code{wcslen} function is the wide character equivalent to
  262. @code{strlen}. The return value is the number of wide characters in the
  263. wide string pointed to by @var{ws} (this is also the offset of
  264. the terminating null wide character of @var{ws}).
  265. Since there are no multi wide character sequences making up one wide
  266. character the return value is not only the offset in the array, it is
  267. also the number of wide characters.
  268. This function was introduced in @w{Amendment 1} to @w{ISO C90}.
  269. @end deftypefun
  270. @deftypefun size_t strnlen (const char *@var{s}, size_t @var{maxlen})
  271. @standards{POSIX.1, string.h}
  272. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  273. This returns the offset of the first null byte in the array @var{s},
  274. except that it returns @var{maxlen} if the first @var{maxlen} bytes
  275. are all non-null.
  276. Therefore this function is equivalent to
  277. @code{(strlen (@var{s}) < @var{maxlen} ? strlen (@var{s}) : @var{maxlen})}
  278. but it
  279. is more efficient and works even if @var{s} is not null-terminated so
  280. long as @var{maxlen} does not exceed the size of @var{s}'s array.
  281. @smallexample
  282. char string[32] = "hello, world";
  283. strnlen (string, 32)
  284. @result{} 12
  285. strnlen (string, 5)
  286. @result{} 5
  287. @end smallexample
  288. This function is part of POSIX.1-2008 and later editions, but was
  289. available in @theglibc{} and other systems as an extension long before
  290. it was standardized. It is declared in @file{string.h}.
  291. @end deftypefun
  292. @deftypefun size_t wcsnlen (const wchar_t *@var{ws}, size_t @var{maxlen})
  293. @standards{GNU, wchar.h}
  294. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  295. @code{wcsnlen} is the wide character equivalent to @code{strnlen}. The
  296. @var{maxlen} parameter specifies the maximum number of wide characters.
  297. This function is part of POSIX.1-2008 and later editions, and is
  298. declared in @file{wchar.h}.
  299. @end deftypefun
  300. @node Copying Strings and Arrays
  301. @section Copying Strings and Arrays
  302. You can use the functions described in this section to copy the contents
  303. of strings, wide strings, and arrays. The @samp{str} and @samp{mem}
  304. functions are declared in @file{string.h} while the @samp{w} functions
  305. are declared in @file{wchar.h}.
  306. @pindex string.h
  307. @pindex wchar.h
  308. @cindex copying strings and arrays
  309. @cindex string copy functions
  310. @cindex array copy functions
  311. @cindex concatenating strings
  312. @cindex string concatenation functions
  313. A helpful way to remember the ordering of the arguments to the functions
  314. in this section is that it corresponds to an assignment expression, with
  315. the destination array specified to the left of the source array. Most
  316. of these functions return the address of the destination array; a few
  317. return the address of the destination's terminating null, or of just
  318. past the destination.
  319. Most of these functions do not work properly if the source and
  320. destination arrays overlap. For example, if the beginning of the
  321. destination array overlaps the end of the source array, the original
  322. contents of that part of the source array may get overwritten before it
  323. is copied. Even worse, in the case of the string functions, the null
  324. byte marking the end of the string may be lost, and the copy
  325. function might get stuck in a loop trashing all the memory allocated to
  326. your program.
  327. All functions that have problems copying between overlapping arrays are
  328. explicitly identified in this manual. In addition to functions in this
  329. section, there are a few others like @code{sprintf} (@pxref{Formatted
  330. Output Functions}) and @code{scanf} (@pxref{Formatted Input
  331. Functions}).
  332. @deftypefun {void *} memcpy (void *restrict @var{to}, const void *restrict @var{from}, size_t @var{size})
  333. @standards{ISO, string.h}
  334. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  335. The @code{memcpy} function copies @var{size} bytes from the object
  336. beginning at @var{from} into the object beginning at @var{to}. The
  337. behavior of this function is undefined if the two arrays @var{to} and
  338. @var{from} overlap; use @code{memmove} instead if overlapping is possible.
  339. The value returned by @code{memcpy} is the value of @var{to}.
  340. Here is an example of how you might use @code{memcpy} to copy the
  341. contents of an array:
  342. @smallexample
  343. struct foo *oldarray, *newarray;
  344. int arraysize;
  345. @dots{}
  346. memcpy (new, old, arraysize * sizeof (struct foo));
  347. @end smallexample
  348. @end deftypefun
  349. @deftypefun {wchar_t *} wmemcpy (wchar_t *restrict @var{wto}, const wchar_t *restrict @var{wfrom}, size_t @var{size})
  350. @standards{ISO, wchar.h}
  351. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  352. The @code{wmemcpy} function copies @var{size} wide characters from the object
  353. beginning at @var{wfrom} into the object beginning at @var{wto}. The
  354. behavior of this function is undefined if the two arrays @var{wto} and
  355. @var{wfrom} overlap; use @code{wmemmove} instead if overlapping is possible.
  356. The following is a possible implementation of @code{wmemcpy} but there
  357. are more optimizations possible.
  358. @smallexample
  359. wchar_t *
  360. wmemcpy (wchar_t *restrict wto, const wchar_t *restrict wfrom,
  361. size_t size)
  362. @{
  363. return (wchar_t *) memcpy (wto, wfrom, size * sizeof (wchar_t));
  364. @}
  365. @end smallexample
  366. The value returned by @code{wmemcpy} is the value of @var{wto}.
  367. This function was introduced in @w{Amendment 1} to @w{ISO C90}.
  368. @end deftypefun
  369. @deftypefun {void *} mempcpy (void *restrict @var{to}, const void *restrict @var{from}, size_t @var{size})
  370. @standards{GNU, string.h}
  371. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  372. The @code{mempcpy} function is nearly identical to the @code{memcpy}
  373. function. It copies @var{size} bytes from the object beginning at
  374. @code{from} into the object pointed to by @var{to}. But instead of
  375. returning the value of @var{to} it returns a pointer to the byte
  376. following the last written byte in the object beginning at @var{to}.
  377. I.e., the value is @code{((void *) ((char *) @var{to} + @var{size}))}.
  378. This function is useful in situations where a number of objects shall be
  379. copied to consecutive memory positions.
  380. @smallexample
  381. void *
  382. combine (void *o1, size_t s1, void *o2, size_t s2)
  383. @{
  384. void *result = malloc (s1 + s2);
  385. if (result != NULL)
  386. mempcpy (mempcpy (result, o1, s1), o2, s2);
  387. return result;
  388. @}
  389. @end smallexample
  390. This function is a GNU extension.
  391. @end deftypefun
  392. @deftypefun {wchar_t *} wmempcpy (wchar_t *restrict @var{wto}, const wchar_t *restrict @var{wfrom}, size_t @var{size})
  393. @standards{GNU, wchar.h}
  394. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  395. The @code{wmempcpy} function is nearly identical to the @code{wmemcpy}
  396. function. It copies @var{size} wide characters from the object
  397. beginning at @code{wfrom} into the object pointed to by @var{wto}. But
  398. instead of returning the value of @var{wto} it returns a pointer to the
  399. wide character following the last written wide character in the object
  400. beginning at @var{wto}. I.e., the value is @code{@var{wto} + @var{size}}.
  401. This function is useful in situations where a number of objects shall be
  402. copied to consecutive memory positions.
  403. The following is a possible implementation of @code{wmemcpy} but there
  404. are more optimizations possible.
  405. @smallexample
  406. wchar_t *
  407. wmempcpy (wchar_t *restrict wto, const wchar_t *restrict wfrom,
  408. size_t size)
  409. @{
  410. return (wchar_t *) mempcpy (wto, wfrom, size * sizeof (wchar_t));
  411. @}
  412. @end smallexample
  413. This function is a GNU extension.
  414. @end deftypefun
  415. @deftypefun {void *} memmove (void *@var{to}, const void *@var{from}, size_t @var{size})
  416. @standards{ISO, string.h}
  417. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  418. @code{memmove} copies the @var{size} bytes at @var{from} into the
  419. @var{size} bytes at @var{to}, even if those two blocks of space
  420. overlap. In the case of overlap, @code{memmove} is careful to copy the
  421. original values of the bytes in the block at @var{from}, including those
  422. bytes which also belong to the block at @var{to}.
  423. The value returned by @code{memmove} is the value of @var{to}.
  424. @end deftypefun
  425. @deftypefun {wchar_t *} wmemmove (wchar_t *@var{wto}, const wchar_t *@var{wfrom}, size_t @var{size})
  426. @standards{ISO, wchar.h}
  427. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  428. @code{wmemmove} copies the @var{size} wide characters at @var{wfrom}
  429. into the @var{size} wide characters at @var{wto}, even if those two
  430. blocks of space overlap. In the case of overlap, @code{wmemmove} is
  431. careful to copy the original values of the wide characters in the block
  432. at @var{wfrom}, including those wide characters which also belong to the
  433. block at @var{wto}.
  434. The following is a possible implementation of @code{wmemcpy} but there
  435. are more optimizations possible.
  436. @smallexample
  437. wchar_t *
  438. wmempcpy (wchar_t *restrict wto, const wchar_t *restrict wfrom,
  439. size_t size)
  440. @{
  441. return (wchar_t *) mempcpy (wto, wfrom, size * sizeof (wchar_t));
  442. @}
  443. @end smallexample
  444. The value returned by @code{wmemmove} is the value of @var{wto}.
  445. This function is a GNU extension.
  446. @end deftypefun
  447. @deftypefun {void *} memccpy (void *restrict @var{to}, const void *restrict @var{from}, int @var{c}, size_t @var{size})
  448. @standards{SVID, string.h}
  449. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  450. This function copies no more than @var{size} bytes from @var{from} to
  451. @var{to}, stopping if a byte matching @var{c} is found. The return
  452. value is a pointer into @var{to} one byte past where @var{c} was copied,
  453. or a null pointer if no byte matching @var{c} appeared in the first
  454. @var{size} bytes of @var{from}.
  455. @end deftypefun
  456. @deftypefun {void *} memset (void *@var{block}, int @var{c}, size_t @var{size})
  457. @standards{ISO, string.h}
  458. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  459. This function copies the value of @var{c} (converted to an
  460. @code{unsigned char}) into each of the first @var{size} bytes of the
  461. object beginning at @var{block}. It returns the value of @var{block}.
  462. @end deftypefun
  463. @deftypefun {wchar_t *} wmemset (wchar_t *@var{block}, wchar_t @var{wc}, size_t @var{size})
  464. @standards{ISO, wchar.h}
  465. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  466. This function copies the value of @var{wc} into each of the first
  467. @var{size} wide characters of the object beginning at @var{block}. It
  468. returns the value of @var{block}.
  469. @end deftypefun
  470. @deftypefun {char *} strcpy (char *restrict @var{to}, const char *restrict @var{from})
  471. @standards{ISO, string.h}
  472. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  473. This copies bytes from the string @var{from} (up to and including
  474. the terminating null byte) into the string @var{to}. Like
  475. @code{memcpy}, this function has undefined results if the strings
  476. overlap. The return value is the value of @var{to}.
  477. @end deftypefun
  478. @deftypefun {wchar_t *} wcscpy (wchar_t *restrict @var{wto}, const wchar_t *restrict @var{wfrom})
  479. @standards{ISO, wchar.h}
  480. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  481. This copies wide characters from the wide string @var{wfrom} (up to and
  482. including the terminating null wide character) into the string
  483. @var{wto}. Like @code{wmemcpy}, this function has undefined results if
  484. the strings overlap. The return value is the value of @var{wto}.
  485. @end deftypefun
  486. @deftypefun {char *} strdup (const char *@var{s})
  487. @standards{SVID, string.h}
  488. @safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
  489. This function copies the string @var{s} into a newly
  490. allocated string. The string is allocated using @code{malloc}; see
  491. @ref{Unconstrained Allocation}. If @code{malloc} cannot allocate space
  492. for the new string, @code{strdup} returns a null pointer. Otherwise it
  493. returns a pointer to the new string.
  494. @end deftypefun
  495. @deftypefun {wchar_t *} wcsdup (const wchar_t *@var{ws})
  496. @standards{GNU, wchar.h}
  497. @safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
  498. This function copies the wide string @var{ws}
  499. into a newly allocated string. The string is allocated using
  500. @code{malloc}; see @ref{Unconstrained Allocation}. If @code{malloc}
  501. cannot allocate space for the new string, @code{wcsdup} returns a null
  502. pointer. Otherwise it returns a pointer to the new wide string.
  503. This function is a GNU extension.
  504. @end deftypefun
  505. @deftypefun {char *} stpcpy (char *restrict @var{to}, const char *restrict @var{from})
  506. @standards{Unknown origin, string.h}
  507. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  508. This function is like @code{strcpy}, except that it returns a pointer to
  509. the end of the string @var{to} (that is, the address of the terminating
  510. null byte @code{to + strlen (from)}) rather than the beginning.
  511. For example, this program uses @code{stpcpy} to concatenate @samp{foo}
  512. and @samp{bar} to produce @samp{foobar}, which it then prints.
  513. @smallexample
  514. @include stpcpy.c.texi
  515. @end smallexample
  516. This function is part of POSIX.1-2008 and later editions, but was
  517. available in @theglibc{} and other systems as an extension long before
  518. it was standardized.
  519. Its behavior is undefined if the strings overlap. The function is
  520. declared in @file{string.h}.
  521. @end deftypefun
  522. @deftypefun {wchar_t *} wcpcpy (wchar_t *restrict @var{wto}, const wchar_t *restrict @var{wfrom})
  523. @standards{GNU, wchar.h}
  524. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  525. This function is like @code{wcscpy}, except that it returns a pointer to
  526. the end of the string @var{wto} (that is, the address of the terminating
  527. null wide character @code{wto + wcslen (wfrom)}) rather than the beginning.
  528. This function is not part of ISO or POSIX but was found useful while
  529. developing @theglibc{} itself.
  530. The behavior of @code{wcpcpy} is undefined if the strings overlap.
  531. @code{wcpcpy} is a GNU extension and is declared in @file{wchar.h}.
  532. @end deftypefun
  533. @deftypefn {Macro} {char *} strdupa (const char *@var{s})
  534. @standards{GNU, string.h}
  535. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  536. This macro is similar to @code{strdup} but allocates the new string
  537. using @code{alloca} instead of @code{malloc} (@pxref{Variable Size
  538. Automatic}). This means of course the returned string has the same
  539. limitations as any block of memory allocated using @code{alloca}.
  540. For obvious reasons @code{strdupa} is implemented only as a macro;
  541. you cannot get the address of this function. Despite this limitation
  542. it is a useful function. The following code shows a situation where
  543. using @code{malloc} would be a lot more expensive.
  544. @smallexample
  545. @include strdupa.c.texi
  546. @end smallexample
  547. Please note that calling @code{strtok} using @var{path} directly is
  548. invalid. It is also not allowed to call @code{strdupa} in the argument
  549. list of @code{strtok} since @code{strdupa} uses @code{alloca}
  550. (@pxref{Variable Size Automatic}) can interfere with the parameter
  551. passing.
  552. This function is only available if GNU CC is used.
  553. @end deftypefn
  554. @deftypefun void bcopy (const void *@var{from}, void *@var{to}, size_t @var{size})
  555. @standards{BSD, string.h}
  556. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  557. This is a partially obsolete alternative for @code{memmove}, derived from
  558. BSD. Note that it is not quite equivalent to @code{memmove}, because the
  559. arguments are not in the same order and there is no return value.
  560. @end deftypefun
  561. @deftypefun void bzero (void *@var{block}, size_t @var{size})
  562. @standards{BSD, string.h}
  563. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  564. This is a partially obsolete alternative for @code{memset}, derived from
  565. BSD. Note that it is not as general as @code{memset}, because the only
  566. value it can store is zero.
  567. @end deftypefun
  568. @node Concatenating Strings
  569. @section Concatenating Strings
  570. @pindex string.h
  571. @pindex wchar.h
  572. @cindex concatenating strings
  573. @cindex string concatenation functions
  574. The functions described in this section concatenate the contents of a
  575. string or wide string to another. They follow the string-copying
  576. functions in their conventions. @xref{Copying Strings and Arrays}.
  577. @samp{strcat} is declared in the header file @file{string.h} while
  578. @samp{wcscat} is declared in @file{wchar.h}.
  579. As noted below, these functions are problematic as their callers may
  580. have performance issues.
  581. @deftypefun {char *} strcat (char *restrict @var{to}, const char *restrict @var{from})
  582. @standards{ISO, string.h}
  583. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  584. The @code{strcat} function is similar to @code{strcpy}, except that the
  585. bytes from @var{from} are concatenated or appended to the end of
  586. @var{to}, instead of overwriting it. That is, the first byte from
  587. @var{from} overwrites the null byte marking the end of @var{to}.
  588. An equivalent definition for @code{strcat} would be:
  589. @smallexample
  590. char *
  591. strcat (char *restrict to, const char *restrict from)
  592. @{
  593. strcpy (to + strlen (to), from);
  594. return to;
  595. @}
  596. @end smallexample
  597. This function has undefined results if the strings overlap.
  598. As noted below, this function has significant performance issues.
  599. @end deftypefun
  600. @deftypefun {wchar_t *} wcscat (wchar_t *restrict @var{wto}, const wchar_t *restrict @var{wfrom})
  601. @standards{ISO, wchar.h}
  602. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  603. The @code{wcscat} function is similar to @code{wcscpy}, except that the
  604. wide characters from @var{wfrom} are concatenated or appended to the end of
  605. @var{wto}, instead of overwriting it. That is, the first wide character from
  606. @var{wfrom} overwrites the null wide character marking the end of @var{wto}.
  607. An equivalent definition for @code{wcscat} would be:
  608. @smallexample
  609. wchar_t *
  610. wcscat (wchar_t *wto, const wchar_t *wfrom)
  611. @{
  612. wcscpy (wto + wcslen (wto), wfrom);
  613. return wto;
  614. @}
  615. @end smallexample
  616. This function has undefined results if the strings overlap.
  617. As noted below, this function has significant performance issues.
  618. @end deftypefun
  619. Programmers using the @code{strcat} or @code{wcscat} functions (or the
  620. @code{strlcat}, @code{strncat} and @code{wcsncat} functions defined in
  621. a later section, for that matter)
  622. can easily be recognized as lazy and reckless. In almost all situations
  623. the lengths of the participating strings are known (it better should be
  624. since how can one otherwise ensure the allocated size of the buffer is
  625. sufficient?) Or at least, one could know them if one keeps track of the
  626. results of the various function calls. But then it is very inefficient
  627. to use @code{strcat}/@code{wcscat}. A lot of time is wasted finding the
  628. end of the destination string so that the actual copying can start.
  629. This is a common example:
  630. @cindex va_copy
  631. @smallexample
  632. /* @r{This function concatenates arbitrarily many strings. The last}
  633. @r{parameter must be @code{NULL}.} */
  634. char *
  635. concat (const char *str, @dots{})
  636. @{
  637. va_list ap, ap2;
  638. size_t total = 1;
  639. va_start (ap, str);
  640. va_copy (ap2, ap);
  641. /* @r{Determine how much space we need.} */
  642. for (const char *s = str; s != NULL; s = va_arg (ap, const char *))
  643. total += strlen (s);
  644. va_end (ap);
  645. char *result = malloc (total);
  646. if (result != NULL)
  647. @{
  648. result[0] = '\0';
  649. /* @r{Copy the strings.} */
  650. for (s = str; s != NULL; s = va_arg (ap2, const char *))
  651. strcat (result, s);
  652. @}
  653. va_end (ap2);
  654. return result;
  655. @}
  656. @end smallexample
  657. This looks quite simple, especially the second loop where the strings
  658. are actually copied. But these innocent lines hide a major performance
  659. penalty. Just imagine that ten strings of 100 bytes each have to be
  660. concatenated. For the second string we search the already stored 100
  661. bytes for the end of the string so that we can append the next string.
  662. For all strings in total the comparisons necessary to find the end of
  663. the intermediate results sums up to 5500! If we combine the copying
  664. with the search for the allocation we can write this function more
  665. efficiently:
  666. @smallexample
  667. char *
  668. concat (const char *str, @dots{})
  669. @{
  670. size_t allocated = 100;
  671. char *result = malloc (allocated);
  672. if (result != NULL)
  673. @{
  674. va_list ap;
  675. size_t resultlen = 0;
  676. char *newp;
  677. va_start (ap, str);
  678. for (const char *s = str; s != NULL; s = va_arg (ap, const char *))
  679. @{
  680. size_t len = strlen (s);
  681. /* @r{Resize the allocated memory if necessary.} */
  682. if (resultlen + len + 1 > allocated)
  683. @{
  684. allocated += len;
  685. newp = reallocarray (result, allocated, 2);
  686. allocated *= 2;
  687. if (newp == NULL)
  688. @{
  689. free (result);
  690. return NULL;
  691. @}
  692. result = newp;
  693. @}
  694. memcpy (result + resultlen, s, len);
  695. resultlen += len;
  696. @}
  697. /* @r{Terminate the result string.} */
  698. result[resultlen++] = '\0';
  699. /* @r{Resize memory to the optimal size.} */
  700. newp = realloc (result, resultlen);
  701. if (newp != NULL)
  702. result = newp;
  703. va_end (ap);
  704. @}
  705. return result;
  706. @}
  707. @end smallexample
  708. With a bit more knowledge about the input strings one could fine-tune
  709. the memory allocation. The difference we are pointing to here is that
  710. we don't use @code{strcat} anymore. We always keep track of the length
  711. of the current intermediate result so we can save ourselves the search for the
  712. end of the string and use @code{mempcpy}. Please note that we also
  713. don't use @code{stpcpy} which might seem more natural since we are handling
  714. strings. But this is not necessary since we already know the
  715. length of the string and therefore can use the faster memory copying
  716. function. The example would work for wide characters the same way.
  717. Whenever a programmer feels the need to use @code{strcat} she or he
  718. should think twice and look through the program to see whether the code cannot
  719. be rewritten to take advantage of already calculated results.
  720. The related functions @code{strlcat}, @code{strncat},
  721. @code{wcscat} and @code{wcsncat}
  722. are almost always unnecessary, too.
  723. Again: it is almost always unnecessary to use functions like @code{strcat}.
  724. @node Truncating Strings
  725. @section Truncating Strings while Copying
  726. @cindex truncating strings
  727. @cindex string truncation
  728. The functions described in this section copy or concatenate the
  729. possibly-truncated contents of a string or array to another, and
  730. similarly for wide strings. They follow the string-copying functions
  731. in their header conventions. @xref{Copying Strings and Arrays}. The
  732. @samp{str} functions are declared in the header file @file{string.h}
  733. and the @samp{wc} functions are declared in the file @file{wchar.h}.
  734. As noted below, these functions are problematic as their callers may
  735. have truncation-related bugs and performance issues.
  736. @deftypefun {char *} strncpy (char *restrict @var{to}, const char *restrict @var{from}, size_t @var{size})
  737. @standards{C90, string.h}
  738. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  739. This function is similar to @code{strcpy} but always copies exactly
  740. @var{size} bytes into @var{to}.
  741. If @var{from} does not contain a null byte in its first @var{size}
  742. bytes, @code{strncpy} copies just the first @var{size} bytes. In this
  743. case no null terminator is written into @var{to}.
  744. Otherwise @var{from} must be a string with length less than
  745. @var{size}. In this case @code{strncpy} copies all of @var{from},
  746. followed by enough null bytes to add up to @var{size} bytes in all.
  747. The behavior of @code{strncpy} is undefined if the strings overlap.
  748. This function was designed for now-rarely-used arrays consisting of
  749. non-null bytes followed by zero or more null bytes. It needs to set
  750. all @var{size} bytes of the destination, even when @var{size} is much
  751. greater than the length of @var{from}. As noted below, this function
  752. is generally a poor choice for processing strings.
  753. @end deftypefun
  754. @deftypefun {wchar_t *} wcsncpy (wchar_t *restrict @var{wto}, const wchar_t *restrict @var{wfrom}, size_t @var{size})
  755. @standards{ISO, wchar.h}
  756. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  757. This function is similar to @code{wcscpy} but always copies exactly
  758. @var{size} wide characters into @var{wto}.
  759. If @var{wfrom} does not contain a null wide character in its first
  760. @var{size} wide characters, then @code{wcsncpy} copies just the first
  761. @var{size} wide characters. In this case no null terminator is
  762. written into @var{wto}.
  763. Otherwise @var{wfrom} must be a wide string with length less than
  764. @var{size}. In this case @code{wcsncpy} copies all of @var{wfrom},
  765. followed by enough null wide characters to add up to @var{size} wide
  766. characters in all.
  767. The behavior of @code{wcsncpy} is undefined if the strings overlap.
  768. This function is the wide-character counterpart of @code{strncpy} and
  769. suffers from most of the problems that @code{strncpy} does. For
  770. example, as noted below, this function is generally a poor choice for
  771. processing strings.
  772. @end deftypefun
  773. @deftypefun {char *} strndup (const char *@var{s}, size_t @var{size})
  774. @standards{GNU, string.h}
  775. @safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
  776. This function is similar to @code{strdup} but always copies at most
  777. @var{size} bytes into the newly allocated string.
  778. If the length of @var{s} is more than @var{size}, then @code{strndup}
  779. copies just the first @var{size} bytes and adds a closing null byte.
  780. Otherwise all bytes are copied and the string is terminated.
  781. This function differs from @code{strncpy} in that it always terminates
  782. the destination string.
  783. As noted below, this function is generally a poor choice for
  784. processing strings.
  785. @code{strndup} is a GNU extension.
  786. @end deftypefun
  787. @deftypefn {Macro} {char *} strndupa (const char *@var{s}, size_t @var{size})
  788. @standards{GNU, string.h}
  789. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  790. This function is similar to @code{strndup} but like @code{strdupa} it
  791. allocates the new string using @code{alloca} @pxref{Variable Size
  792. Automatic}. The same advantages and limitations of @code{strdupa} are
  793. valid for @code{strndupa}, too.
  794. This function is implemented only as a macro, just like @code{strdupa}.
  795. Just as @code{strdupa} this macro also must not be used inside the
  796. parameter list in a function call.
  797. As noted below, this function is generally a poor choice for
  798. processing strings.
  799. @code{strndupa} is only available if GNU CC is used.
  800. @end deftypefn
  801. @deftypefun {char *} stpncpy (char *restrict @var{to}, const char *restrict @var{from}, size_t @var{size})
  802. @standards{GNU, string.h}
  803. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  804. This function is similar to @code{stpcpy} but copies always exactly
  805. @var{size} bytes into @var{to}.
  806. If the length of @var{from} is more than @var{size}, then @code{stpncpy}
  807. copies just the first @var{size} bytes and returns a pointer to the
  808. byte directly following the one which was copied last. Note that in
  809. this case there is no null terminator written into @var{to}.
  810. If the length of @var{from} is less than @var{size}, then @code{stpncpy}
  811. copies all of @var{from}, followed by enough null bytes to add up
  812. to @var{size} bytes in all. This behavior is rarely useful, but it
  813. is implemented to be useful in contexts where this behavior of the
  814. @code{strncpy} is used. @code{stpncpy} returns a pointer to the
  815. @emph{first} written null byte.
  816. This function is not part of ISO or POSIX but was found useful while
  817. developing @theglibc{} itself.
  818. Its behavior is undefined if the strings overlap. The function is
  819. declared in @file{string.h}.
  820. As noted below, this function is generally a poor choice for
  821. processing strings.
  822. @end deftypefun
  823. @deftypefun {wchar_t *} wcpncpy (wchar_t *restrict @var{wto}, const wchar_t *restrict @var{wfrom}, size_t @var{size})
  824. @standards{GNU, wchar.h}
  825. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  826. This function is similar to @code{wcpcpy} but copies always exactly
  827. @var{wsize} wide characters into @var{wto}.
  828. If the length of @var{wfrom} is more than @var{size}, then
  829. @code{wcpncpy} copies just the first @var{size} wide characters and
  830. returns a pointer to the wide character directly following the last
  831. non-null wide character which was copied last. Note that in this case
  832. there is no null terminator written into @var{wto}.
  833. If the length of @var{wfrom} is less than @var{size}, then @code{wcpncpy}
  834. copies all of @var{wfrom}, followed by enough null wide characters to add up
  835. to @var{size} wide characters in all. This behavior is rarely useful, but it
  836. is implemented to be useful in contexts where this behavior of the
  837. @code{wcsncpy} is used. @code{wcpncpy} returns a pointer to the
  838. @emph{first} written null wide character.
  839. This function is not part of ISO or POSIX but was found useful while
  840. developing @theglibc{} itself.
  841. Its behavior is undefined if the strings overlap.
  842. As noted below, this function is generally a poor choice for
  843. processing strings.
  844. @code{wcpncpy} is a GNU extension.
  845. @end deftypefun
  846. @deftypefun {char *} strncat (char *restrict @var{to}, const char *restrict @var{from}, size_t @var{size})
  847. @standards{ISO, string.h}
  848. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  849. This function is like @code{strcat} except that not more than @var{size}
  850. bytes from @var{from} are appended to the end of @var{to}, and
  851. @var{from} need not be null-terminated. A single null byte is also
  852. always appended to @var{to}, so the total
  853. allocated size of @var{to} must be at least @code{@var{size} + 1} bytes
  854. longer than its initial length.
  855. The @code{strncat} function could be implemented like this:
  856. @smallexample
  857. @group
  858. char *
  859. strncat (char *to, const char *from, size_t size)
  860. @{
  861. size_t len = strlen (to);
  862. memcpy (to + len, from, strnlen (from, size));
  863. to[len + strnlen (from, size)] = '\0';
  864. return to;
  865. @}
  866. @end group
  867. @end smallexample
  868. The behavior of @code{strncat} is undefined if the strings overlap.
  869. As a companion to @code{strncpy}, @code{strncat} was designed for
  870. now-rarely-used arrays consisting of non-null bytes followed by zero
  871. or more null bytes. However, As noted below, this function is generally a poor
  872. choice for processing strings. Also, this function has significant
  873. performance issues. @xref{Concatenating Strings}.
  874. @end deftypefun
  875. @deftypefun {wchar_t *} wcsncat (wchar_t *restrict @var{wto}, const wchar_t *restrict @var{wfrom}, size_t @var{size})
  876. @standards{ISO, wchar.h}
  877. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  878. This function is like @code{wcscat} except that not more than @var{size}
  879. wide characters from @var{from} are appended to the end of @var{to},
  880. and @var{from} need not be null-terminated. A single null wide
  881. character is also always appended to @var{to}, so the total allocated
  882. size of @var{to} must be at least @code{wcsnlen (@var{wfrom},
  883. @var{size}) + 1} wide characters longer than its initial length.
  884. The @code{wcsncat} function could be implemented like this:
  885. @smallexample
  886. @group
  887. wchar_t *
  888. wcsncat (wchar_t *restrict wto, const wchar_t *restrict wfrom,
  889. size_t size)
  890. @{
  891. size_t len = wcslen (wto);
  892. memcpy (wto + len, wfrom, wcsnlen (wfrom, size) * sizeof (wchar_t));
  893. wto[len + wcsnlen (wfrom, size)] = L'\0';
  894. return wto;
  895. @}
  896. @end group
  897. @end smallexample
  898. The behavior of @code{wcsncat} is undefined if the strings overlap.
  899. As noted below, this function is generally a poor choice for
  900. processing strings. Also, this function has significant performance
  901. issues. @xref{Concatenating Strings}.
  902. @end deftypefun
  903. @deftypefun size_t strlcpy (char *restrict @var{to}, const char *restrict @var{from}, size_t @var{size})
  904. @standards{POSIX-1.2024, string.h}
  905. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  906. This function copies the string @var{from} to the destination array
  907. @var{to}, limiting the result's size (including the null terminator)
  908. to @var{size}. The caller should ensure that @var{size} includes room
  909. for the result's terminating null byte.
  910. If @var{size} is greater than the length of the string @var{from},
  911. this function copies the non-null bytes of the string
  912. @var{from} to the destination array @var{to},
  913. and terminates the copy with a null byte. Like other
  914. string functions such as @code{strcpy}, but unlike @code{strncpy}, any
  915. remaining bytes in the destination array remain unchanged.
  916. If @var{size} is nonzero and less than or equal to the the length of the string
  917. @var{from}, this function copies only the first @samp{@var{size} - 1}
  918. bytes to the destination array @var{to}, and writes a terminating null
  919. byte to the last byte of the array.
  920. This function returns the length of the string @var{from}. This means
  921. that truncation occurs if and only if the returned value is greater
  922. than or equal to @var{size}.
  923. The behavior is undefined if @var{to} or @var{from} is a null pointer,
  924. or if the destination array's size is less than @var{size}, or if the
  925. string @var{from} overlaps the first @var{size} bytes of the
  926. destination array.
  927. As noted below, this function is generally a poor choice for
  928. processing strings. Also, this function has a performance issue,
  929. as its time cost is proportional to the length of @var{from}
  930. even when @var{size} is small.
  931. This function was originally derived from OpenBSD 2.4, but was added in
  932. POSIX.1-2024.
  933. @end deftypefun
  934. @deftypefun size_t wcslcpy (wchar_t *restrict @var{to}, const wchar_t *restrict @var{from}, size_t @var{size})
  935. @standards{POSIX.1-2024, string.h}
  936. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  937. This function is a variant of @code{strlcpy} for wide strings.
  938. The @var{size} argument counts the length of the destination buffer in
  939. wide characters (and not bytes).
  940. This function was originally a BSD extension, but was added in
  941. POSIX.1-2024.
  942. @end deftypefun
  943. @deftypefun size_t strlcat (char *restrict @var{to}, const char *restrict @var{from}, size_t @var{size})
  944. @standards{POSIX-1.2024, string.h}
  945. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  946. This function appends the string @var{from} to the
  947. string @var{to}, limiting the result's total size (including the null
  948. terminator) to @var{size}. The caller should ensure that @var{size}
  949. includes room for the result's terminating null byte.
  950. This function copies as much as possible of the string @var{from} into
  951. the array at @var{to} of @var{size} bytes, starting at the terminating
  952. null byte of the original string @var{to}. In effect, this appends
  953. the string @var{from} to the string @var{to}. Although the resulting
  954. string will contain a null terminator, it can be truncated (not all
  955. bytes in @var{from} may be copied).
  956. This function returns the sum of the original length of @var{to} and
  957. the length of @var{from}. This means that truncation occurs if and
  958. only if the returned value is greater than or equal to @var{size}.
  959. The behavior is undefined if @var{to} or @var{from} is a null pointer,
  960. or if the destination array's size is less than @var{size}, or if the
  961. destination array does not contain a null byte in its first @var{size}
  962. bytes, or if the string @var{from} overlaps the first @var{size} bytes
  963. of the destination array.
  964. As noted below, this function is generally a poor choice for
  965. processing strings. Also, this function has significant performance
  966. issues. @xref{Concatenating Strings}.
  967. This function was originally derived from OpenBSD 2.4, but was added in
  968. POSIX.1-2024.
  969. @end deftypefun
  970. @deftypefun size_t wcslcat (wchar_t *restrict @var{to}, const wchar_t *restrict @var{from}, size_t @var{size})
  971. @standards{POSIX.1-2024, string.h}
  972. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  973. This function is a variant of @code{strlcat} for wide strings.
  974. The @var{size} argument counts the length of the destination buffer in
  975. wide characters (and not bytes).
  976. This function was originally a BSD extension, but was added in
  977. POSIX.1-2024.
  978. @end deftypefun
  979. Because these functions can abruptly truncate strings or wide strings,
  980. they are generally poor choices for processing them. When copying or
  981. concatening multibyte strings, they can truncate within a multibyte
  982. character so that the result is not a valid multibyte string. When
  983. combining or concatenating multibyte or wide strings, they may
  984. truncate the output after a combining character, resulting in a
  985. corrupted grapheme. They can cause bugs even when processing
  986. single-byte strings: for example, when calculating an ASCII-only user
  987. name, a truncated name can identify the wrong user.
  988. Although some buffer overruns can be prevented by manually replacing
  989. calls to copying functions with calls to truncation functions, there
  990. are often easier and safer automatic techniques, such as fortification
  991. (@pxref{Source Fortification}) and AddressSanitizer
  992. (@pxref{Instrumentation Options,, Program Instrumentation Options, gcc, Using GCC}).
  993. Because truncation functions can mask
  994. application bugs that would otherwise be caught by the automatic
  995. techniques, these functions should be used only when the application's
  996. underlying logic requires truncation.
  997. @strong{Note:} GNU programs should not truncate strings or wide
  998. strings to fit arbitrary size limits. @xref{Semantics, , Writing
  999. Robust Programs, standards, The GNU Coding Standards}. Instead of
  1000. string-truncation functions, it is usually better to use dynamic
  1001. memory allocation (@pxref{Unconstrained Allocation}) and functions
  1002. such as @code{strdup} or @code{asprintf} to construct strings.
  1003. @node String/Array Comparison
  1004. @section String/Array Comparison
  1005. @cindex comparing strings and arrays
  1006. @cindex string comparison functions
  1007. @cindex array comparison functions
  1008. @cindex predicates on strings
  1009. @cindex predicates on arrays
  1010. You can use the functions in this section to perform comparisons on the
  1011. contents of strings and arrays. As well as checking for equality, these
  1012. functions can also be used as the ordering functions for sorting
  1013. operations. @xref{Searching and Sorting}, for an example of this.
  1014. Unlike most comparison operations in C, the string comparison functions
  1015. return a nonzero value if the strings are @emph{not} equivalent rather
  1016. than if they are. The sign of the value indicates the relative ordering
  1017. of the first part of the strings that are not equivalent: a
  1018. negative value indicates that the first string is ``less'' than the
  1019. second, while a positive value indicates that the first string is
  1020. ``greater''.
  1021. The most common use of these functions is to check only for equality.
  1022. This is canonically done with an expression like @w{@samp{! strcmp (s1, s2)}}.
  1023. All of these functions are declared in the header file @file{string.h}.
  1024. @pindex string.h
  1025. @deftypefun int memcmp (const void *@var{a1}, const void *@var{a2}, size_t @var{size})
  1026. @standards{ISO, string.h}
  1027. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1028. The function @code{memcmp} compares the @var{size} bytes of memory
  1029. beginning at @var{a1} against the @var{size} bytes of memory beginning
  1030. at @var{a2}. The value returned has the same sign as the difference
  1031. between the first differing pair of bytes (interpreted as @code{unsigned
  1032. char} objects, then promoted to @code{int}).
  1033. If the contents of the two blocks are equal, @code{memcmp} returns
  1034. @code{0}.
  1035. @end deftypefun
  1036. @deftypefun int wmemcmp (const wchar_t *@var{a1}, const wchar_t *@var{a2}, size_t @var{size})
  1037. @standards{ISO, wchar.h}
  1038. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1039. The function @code{wmemcmp} compares the @var{size} wide characters
  1040. beginning at @var{a1} against the @var{size} wide characters beginning
  1041. at @var{a2}. The value returned is smaller than or larger than zero
  1042. depending on whether the first differing wide character is @var{a1} is
  1043. smaller or larger than the corresponding wide character in @var{a2}.
  1044. If the contents of the two blocks are equal, @code{wmemcmp} returns
  1045. @code{0}.
  1046. @end deftypefun
  1047. On arbitrary arrays, the @code{memcmp} function is mostly useful for
  1048. testing equality. It usually isn't meaningful to do byte-wise ordering
  1049. comparisons on arrays of things other than bytes. For example, a
  1050. byte-wise comparison on the bytes that make up floating-point numbers
  1051. isn't likely to tell you anything about the relationship between the
  1052. values of the floating-point numbers.
  1053. @code{wmemcmp} is really only useful to compare arrays of type
  1054. @code{wchar_t} since the function looks at @code{sizeof (wchar_t)} bytes
  1055. at a time and this number of bytes is system dependent.
  1056. You should also be careful about using @code{memcmp} to compare objects
  1057. that can contain ``holes'', such as the padding inserted into structure
  1058. objects to enforce alignment requirements, extra space at the end of
  1059. unions, and extra bytes at the ends of strings whose length is less
  1060. than their allocated size. The contents of these ``holes'' are
  1061. indeterminate and may cause strange behavior when performing byte-wise
  1062. comparisons. For more predictable results, perform an explicit
  1063. component-wise comparison.
  1064. For example, given a structure type definition like:
  1065. @smallexample
  1066. struct foo
  1067. @{
  1068. unsigned char tag;
  1069. union
  1070. @{
  1071. double f;
  1072. long i;
  1073. char *p;
  1074. @} value;
  1075. @};
  1076. @end smallexample
  1077. @noindent
  1078. you are better off writing a specialized comparison function to compare
  1079. @code{struct foo} objects instead of comparing them with @code{memcmp}.
  1080. @deftypefun int strcmp (const char *@var{s1}, const char *@var{s2})
  1081. @standards{ISO, string.h}
  1082. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1083. The @code{strcmp} function compares the string @var{s1} against
  1084. @var{s2}, returning a value that has the same sign as the difference
  1085. between the first differing pair of bytes (interpreted as
  1086. @code{unsigned char} objects, then promoted to @code{int}).
  1087. If the two strings are equal, @code{strcmp} returns @code{0}.
  1088. A consequence of the ordering used by @code{strcmp} is that if @var{s1}
  1089. is an initial substring of @var{s2}, then @var{s1} is considered to be
  1090. ``less than'' @var{s2}.
  1091. @code{strcmp} does not take sorting conventions of the language the
  1092. strings are written in into account. To get that one has to use
  1093. @code{strcoll}.
  1094. @end deftypefun
  1095. @deftypefun int wcscmp (const wchar_t *@var{ws1}, const wchar_t *@var{ws2})
  1096. @standards{ISO, wchar.h}
  1097. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1098. The @code{wcscmp} function compares the wide string @var{ws1}
  1099. against @var{ws2}. The value returned is smaller than or larger than zero
  1100. depending on whether the first differing wide character is @var{ws1} is
  1101. smaller or larger than the corresponding wide character in @var{ws2}.
  1102. If the two strings are equal, @code{wcscmp} returns @code{0}.
  1103. A consequence of the ordering used by @code{wcscmp} is that if @var{ws1}
  1104. is an initial substring of @var{ws2}, then @var{ws1} is considered to be
  1105. ``less than'' @var{ws2}.
  1106. @code{wcscmp} does not take sorting conventions of the language the
  1107. strings are written in into account. To get that one has to use
  1108. @code{wcscoll}.
  1109. @end deftypefun
  1110. @deftypefun int strcasecmp (const char *@var{s1}, const char *@var{s2})
  1111. @standards{BSD, string.h}
  1112. @safety{@prelim{}@mtsafe{@mtslocale{}}@assafe{}@acsafe{}}
  1113. @c Although this calls tolower multiple times, it's a macro, and
  1114. @c strcasecmp is optimized so that the locale pointer is read only once.
  1115. @c There are some asm implementations too, for which the single-read
  1116. @c from locale TLS pointers also applies.
  1117. This function is like @code{strcmp}, except that differences in case are
  1118. ignored, and its arguments must be multibyte strings.
  1119. How uppercase and lowercase characters are related is
  1120. determined by the currently selected locale. In the standard @code{"C"}
  1121. locale the characters @"A and @"a do not match but in a locale which
  1122. regards these characters as parts of the alphabet they do match.
  1123. @noindent
  1124. @code{strcasecmp} is derived from BSD.
  1125. @end deftypefun
  1126. @deftypefun int wcscasecmp (const wchar_t *@var{ws1}, const wchar_t *@var{ws2})
  1127. @standards{GNU, wchar.h}
  1128. @safety{@prelim{}@mtsafe{@mtslocale{}}@assafe{}@acsafe{}}
  1129. @c Since towlower is not a macro, the locale object may be read multiple
  1130. @c times.
  1131. This function is like @code{wcscmp}, except that differences in case are
  1132. ignored. How uppercase and lowercase characters are related is
  1133. determined by the currently selected locale. In the standard @code{"C"}
  1134. locale the characters @"A and @"a do not match but in a locale which
  1135. regards these characters as parts of the alphabet they do match.
  1136. @noindent
  1137. @code{wcscasecmp} is a GNU extension.
  1138. @end deftypefun
  1139. @deftypefun int strncmp (const char *@var{s1}, const char *@var{s2}, size_t @var{size})
  1140. @standards{ISO, string.h}
  1141. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1142. This function is the similar to @code{strcmp}, except that no more than
  1143. @var{size} bytes are compared. In other words, if the two
  1144. strings are the same in their first @var{size} bytes, the
  1145. return value is zero.
  1146. @end deftypefun
  1147. @deftypefun int wcsncmp (const wchar_t *@var{ws1}, const wchar_t *@var{ws2}, size_t @var{size})
  1148. @standards{ISO, wchar.h}
  1149. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1150. This function is similar to @code{wcscmp}, except that no more than
  1151. @var{size} wide characters are compared. In other words, if the two
  1152. strings are the same in their first @var{size} wide characters, the
  1153. return value is zero.
  1154. @end deftypefun
  1155. @deftypefun int strncasecmp (const char *@var{s1}, const char *@var{s2}, size_t @var{n})
  1156. @standards{BSD, string.h}
  1157. @safety{@prelim{}@mtsafe{@mtslocale{}}@assafe{}@acsafe{}}
  1158. This function is like @code{strncmp}, except that differences in case
  1159. are ignored, and the compared parts of the arguments should consist of
  1160. valid multibyte characters.
  1161. Like @code{strcasecmp}, it is locale dependent how
  1162. uppercase and lowercase characters are related.
  1163. @noindent
  1164. @code{strncasecmp} is a GNU extension.
  1165. @end deftypefun
  1166. @deftypefun int wcsncasecmp (const wchar_t *@var{ws1}, const wchar_t *@var{s2}, size_t @var{n})
  1167. @standards{GNU, wchar.h}
  1168. @safety{@prelim{}@mtsafe{@mtslocale{}}@assafe{}@acsafe{}}
  1169. This function is like @code{wcsncmp}, except that differences in case
  1170. are ignored. Like @code{wcscasecmp}, it is locale dependent how
  1171. uppercase and lowercase characters are related.
  1172. @noindent
  1173. @code{wcsncasecmp} is a GNU extension.
  1174. @end deftypefun
  1175. Here are some examples showing the use of @code{strcmp} and
  1176. @code{strncmp} (equivalent examples can be constructed for the wide
  1177. character functions). These examples assume the use of the ASCII
  1178. character set. (If some other character set---say, EBCDIC---is used
  1179. instead, then the glyphs are associated with different numeric codes,
  1180. and the return values and ordering may differ.)
  1181. @smallexample
  1182. strcmp ("hello", "hello")
  1183. @result{} 0 /* @r{These two strings are the same.} */
  1184. strcmp ("hello", "Hello")
  1185. @result{} 32 /* @r{Comparisons are case-sensitive.} */
  1186. strcmp ("hello", "world")
  1187. @result{} -15 /* @r{The byte @code{'h'} comes before @code{'w'}.} */
  1188. strcmp ("hello", "hello, world")
  1189. @result{} -44 /* @r{Comparing a null byte against a comma.} */
  1190. strncmp ("hello", "hello, world", 5)
  1191. @result{} 0 /* @r{The initial 5 bytes are the same.} */
  1192. strncmp ("hello, world", "hello, stupid world!!!", 5)
  1193. @result{} 0 /* @r{The initial 5 bytes are the same.} */
  1194. @end smallexample
  1195. @deftypefun int strverscmp (const char *@var{s1}, const char *@var{s2})
  1196. @standards{GNU, string.h}
  1197. @safety{@prelim{}@mtsafe{@mtslocale{}}@assafe{}@acsafe{}}
  1198. @c Calls isdigit multiple times, locale may change in between.
  1199. The @code{strverscmp} function compares the string @var{s1} against
  1200. @var{s2}, considering them as holding indices/version numbers. The
  1201. return value follows the same conventions as found in the
  1202. @code{strcmp} function. In fact, if @var{s1} and @var{s2} contain no
  1203. digits, @code{strverscmp} behaves like @code{strcmp}
  1204. (in the sense that the sign of the result is the same).
  1205. The comparison algorithm which the @code{strverscmp} function implements
  1206. differs slightly from other version-comparison algorithms. The
  1207. implementation is based on a finite-state machine, whose behavior is
  1208. approximated below.
  1209. @itemize @bullet
  1210. @item
  1211. The input strings are each split into sequences of non-digits and
  1212. digits. These sequences can be empty at the beginning and end of the
  1213. string. Digits are determined by the @code{isdigit} function and are
  1214. thus subject to the current locale.
  1215. @item
  1216. Comparison starts with a (possibly empty) non-digit sequence. The first
  1217. non-equal sequences of non-digits or digits determines the outcome of
  1218. the comparison.
  1219. @item
  1220. Corresponding non-digit sequences in both strings are compared
  1221. lexicographically if their lengths are equal. If the lengths differ,
  1222. the shorter non-digit sequence is extended with the input string
  1223. character immediately following it (which may be the null terminator),
  1224. the other sequence is truncated to be of the same (extended) length, and
  1225. these two sequences are compared lexicographically. In the last case,
  1226. the sequence comparison determines the result of the function because
  1227. the extension character (or some character before it) is necessarily
  1228. different from the character at the same offset in the other input
  1229. string.
  1230. @item
  1231. For two sequences of digits, the number of leading zeros is counted (which
  1232. can be zero). If the count differs, the string with more leading zeros
  1233. in the digit sequence is considered smaller than the other string.
  1234. @item
  1235. If the two sequences of digits have no leading zeros, they are compared
  1236. as integers, that is, the string with the longer digit sequence is
  1237. deemed larger, and if both sequences are of equal length, they are
  1238. compared lexicographically.
  1239. @item
  1240. If both digit sequences start with a zero and have an equal number of
  1241. leading zeros, they are compared lexicographically if their lengths are
  1242. the same. If the lengths differ, the shorter sequence is extended with
  1243. the following character in its input string, and the other sequence is
  1244. truncated to the same length, and both sequences are compared
  1245. lexicographically (similar to the non-digit sequence case above).
  1246. @end itemize
  1247. The treatment of leading zeros and the tie-breaking extension characters
  1248. (which in effect propagate across non-digit/digit sequence boundaries)
  1249. differs from other version-comparison algorithms.
  1250. @smallexample
  1251. strverscmp ("no digit", "no digit")
  1252. @result{} 0 /* @r{same behavior as strcmp.} */
  1253. strverscmp ("item#99", "item#100")
  1254. @result{} <0 /* @r{same prefix, but 99 < 100.} */
  1255. strverscmp ("alpha1", "alpha001")
  1256. @result{} >0 /* @r{different number of leading zeros (0 and 2).} */
  1257. strverscmp ("part1_f012", "part1_f01")
  1258. @result{} >0 /* @r{lexicographical comparison with leading zeros.} */
  1259. strverscmp ("foo.009", "foo.0")
  1260. @result{} <0 /* @r{different number of leading zeros (2 and 1).} */
  1261. @end smallexample
  1262. @code{strverscmp} is a GNU extension.
  1263. @end deftypefun
  1264. @deftypefun int bcmp (const void *@var{a1}, const void *@var{a2}, size_t @var{size})
  1265. @standards{BSD, string.h}
  1266. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1267. This is an obsolete alias for @code{memcmp}, derived from BSD.
  1268. @end deftypefun
  1269. @node Collation Functions
  1270. @section Collation Functions
  1271. @cindex collating strings
  1272. @cindex string collation functions
  1273. In some locales, the conventions for lexicographic ordering differ from
  1274. the strict numeric ordering of character codes. For example, in Spanish
  1275. most glyphs with diacritical marks such as accents are not considered
  1276. distinct letters for the purposes of collation. On the other hand, in
  1277. Czech the two-character sequence @samp{ch} is treated as a single letter
  1278. that is collated between @samp{h} and @samp{i}.
  1279. You can use the functions @code{strcoll} and @code{strxfrm} (declared in
  1280. the headers file @file{string.h}) and @code{wcscoll} and @code{wcsxfrm}
  1281. (declared in the headers file @file{wchar}) to compare strings using a
  1282. collation ordering appropriate for the current locale. The locale used
  1283. by these functions in particular can be specified by setting the locale
  1284. for the @code{LC_COLLATE} category; see @ref{Locales}.
  1285. @pindex string.h
  1286. @pindex wchar.h
  1287. In the standard C locale, the collation sequence for @code{strcoll} is
  1288. the same as that for @code{strcmp}. Similarly, @code{wcscoll} and
  1289. @code{wcscmp} are the same in this situation.
  1290. Effectively, the way these functions work is by applying a mapping to
  1291. transform the characters in a multibyte string to a byte
  1292. sequence that represents
  1293. the string's position in the collating sequence of the current locale.
  1294. Comparing two such byte sequences in a simple fashion is equivalent to
  1295. comparing the strings with the locale's collating sequence.
  1296. The functions @code{strcoll} and @code{wcscoll} perform this translation
  1297. implicitly, in order to do one comparison. By contrast, @code{strxfrm}
  1298. and @code{wcsxfrm} perform the mapping explicitly. If you are making
  1299. multiple comparisons using the same string or set of strings, it is
  1300. likely to be more efficient to use @code{strxfrm} or @code{wcsxfrm} to
  1301. transform all the strings just once, and subsequently compare the
  1302. transformed strings with @code{strcmp} or @code{wcscmp}.
  1303. @deftypefun int strcoll (const char *@var{s1}, const char *@var{s2})
  1304. @standards{ISO, string.h}
  1305. @safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
  1306. @c Calls strcoll_l with the current locale, which dereferences only the
  1307. @c LC_COLLATE data pointer.
  1308. The @code{strcoll} function is similar to @code{strcmp} but uses the
  1309. collating sequence of the current locale for collation (the
  1310. @code{LC_COLLATE} locale). The arguments are multibyte strings.
  1311. @end deftypefun
  1312. @deftypefun int wcscoll (const wchar_t *@var{ws1}, const wchar_t *@var{ws2})
  1313. @standards{ISO, wchar.h}
  1314. @safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
  1315. @c Same as strcoll, but calling wcscoll_l.
  1316. The @code{wcscoll} function is similar to @code{wcscmp} but uses the
  1317. collating sequence of the current locale for collation (the
  1318. @code{LC_COLLATE} locale).
  1319. @end deftypefun
  1320. Here is an example of sorting an array of strings, using @code{strcoll}
  1321. to compare them. The actual sort algorithm is not written here; it
  1322. comes from @code{qsort} (@pxref{Array Sort Function}). The job of the
  1323. code shown here is to say how to compare the strings while sorting them.
  1324. (Later on in this section, we will show a way to do this more
  1325. efficiently using @code{strxfrm}.)
  1326. @smallexample
  1327. /* @r{This is the comparison function used with @code{qsort}.} */
  1328. int
  1329. compare_elements (const void *v1, const void *v2)
  1330. @{
  1331. char * const *p1 = v1;
  1332. char * const *p2 = v2;
  1333. return strcoll (*p1, *p2);
  1334. @}
  1335. /* @r{This is the entry point---the function to sort}
  1336. @r{strings using the locale's collating sequence.} */
  1337. void
  1338. sort_strings (char **array, int nstrings)
  1339. @{
  1340. /* @r{Sort @code{temp_array} by comparing the strings.} */
  1341. qsort (array, nstrings,
  1342. sizeof (char *), compare_elements);
  1343. @}
  1344. @end smallexample
  1345. @cindex converting string to collation order
  1346. @deftypefun size_t strxfrm (char *restrict @var{to}, const char *restrict @var{from}, size_t @var{size})
  1347. @standards{ISO, string.h}
  1348. @safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
  1349. The function @code{strxfrm} transforms the multibyte string
  1350. @var{from} using the
  1351. collation transformation determined by the locale currently selected for
  1352. collation, and stores the transformed string in the array @var{to}. Up
  1353. to @var{size} bytes (including a terminating null byte) are
  1354. stored.
  1355. The behavior is undefined if the strings @var{to} and @var{from}
  1356. overlap; see @ref{Copying Strings and Arrays}.
  1357. The return value is the length of the entire transformed string. This
  1358. value is not affected by the value of @var{size}, but if it is greater
  1359. or equal than @var{size}, it means that the transformed string did not
  1360. entirely fit in the array @var{to}. In this case, only as much of the
  1361. string as actually fits was stored. To get the whole transformed
  1362. string, call @code{strxfrm} again with a bigger output array.
  1363. The transformed string may be longer than the original string, and it
  1364. may also be shorter.
  1365. If @var{size} is zero, no bytes are stored in @var{to}. In this
  1366. case, @code{strxfrm} simply returns the number of bytes that would
  1367. be the length of the transformed string. This is useful for determining
  1368. what size the allocated array should be. It does not matter what
  1369. @var{to} is if @var{size} is zero; @var{to} may even be a null pointer.
  1370. @end deftypefun
  1371. @deftypefun size_t wcsxfrm (wchar_t *restrict @var{wto}, const wchar_t *@var{wfrom}, size_t @var{size})
  1372. @standards{ISO, wchar.h}
  1373. @safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
  1374. The function @code{wcsxfrm} transforms wide string @var{wfrom}
  1375. using the collation transformation determined by the locale currently
  1376. selected for collation, and stores the transformed string in the array
  1377. @var{wto}. Up to @var{size} wide characters (including a terminating null
  1378. wide character) are stored.
  1379. The behavior is undefined if the strings @var{wto} and @var{wfrom}
  1380. overlap; see @ref{Copying Strings and Arrays}.
  1381. The return value is the length of the entire transformed wide
  1382. string. This value is not affected by the value of @var{size}, but if
  1383. it is greater or equal than @var{size}, it means that the transformed
  1384. wide string did not entirely fit in the array @var{wto}. In
  1385. this case, only as much of the wide string as actually fits
  1386. was stored. To get the whole transformed wide string, call
  1387. @code{wcsxfrm} again with a bigger output array.
  1388. The transformed wide string may be longer than the original
  1389. wide string, and it may also be shorter.
  1390. If @var{size} is zero, no wide characters are stored in @var{to}. In this
  1391. case, @code{wcsxfrm} simply returns the number of wide characters that
  1392. would be the length of the transformed wide string. This is
  1393. useful for determining what size the allocated array should be (remember
  1394. to multiply with @code{sizeof (wchar_t)}). It does not matter what
  1395. @var{wto} is if @var{size} is zero; @var{wto} may even be a null pointer.
  1396. @end deftypefun
  1397. Here is an example of how you can use @code{strxfrm} when
  1398. you plan to do many comparisons. It does the same thing as the previous
  1399. example, but much faster, because it has to transform each string only
  1400. once, no matter how many times it is compared with other strings. Even
  1401. the time needed to allocate and free storage is much less than the time
  1402. we save, when there are many strings.
  1403. @smallexample
  1404. struct sorter @{ char *input; char *transformed; @};
  1405. /* @r{This is the comparison function used with @code{qsort}}
  1406. @r{to sort an array of @code{struct sorter}.} */
  1407. int
  1408. compare_elements (const void *v1, const void *v2)
  1409. @{
  1410. const struct sorter *p1 = v1;
  1411. const struct sorter *p2 = v2;
  1412. return strcmp (p1->transformed, p2->transformed);
  1413. @}
  1414. /* @r{This is the entry point---the function to sort}
  1415. @r{strings using the locale's collating sequence.} */
  1416. void
  1417. sort_strings_fast (char **array, int nstrings)
  1418. @{
  1419. struct sorter temp_array[nstrings];
  1420. int i;
  1421. /* @r{Set up @code{temp_array}. Each element contains}
  1422. @r{one input string and its transformed string.} */
  1423. for (i = 0; i < nstrings; i++)
  1424. @{
  1425. size_t length = strlen (array[i]) * 2;
  1426. char *transformed;
  1427. size_t transformed_length;
  1428. temp_array[i].input = array[i];
  1429. /* @r{First try a buffer perhaps big enough.} */
  1430. transformed = (char *) xmalloc (length);
  1431. /* @r{Transform @code{array[i]}.} */
  1432. transformed_length = strxfrm (transformed, array[i], length);
  1433. /* @r{If the buffer was not large enough, resize it}
  1434. @r{and try again.} */
  1435. if (transformed_length >= length)
  1436. @{
  1437. /* @r{Allocate the needed space. +1 for terminating}
  1438. @r{@code{'\0'} byte.} */
  1439. transformed = xrealloc (transformed,
  1440. transformed_length + 1);
  1441. /* @r{The return value is not interesting because we know}
  1442. @r{how long the transformed string is.} */
  1443. (void) strxfrm (transformed, array[i],
  1444. transformed_length + 1);
  1445. @}
  1446. temp_array[i].transformed = transformed;
  1447. @}
  1448. /* @r{Sort @code{temp_array} by comparing transformed strings.} */
  1449. qsort (temp_array, nstrings,
  1450. sizeof (struct sorter), compare_elements);
  1451. /* @r{Put the elements back in the permanent array}
  1452. @r{in their sorted order.} */
  1453. for (i = 0; i < nstrings; i++)
  1454. array[i] = temp_array[i].input;
  1455. /* @r{Free the strings we allocated.} */
  1456. for (i = 0; i < nstrings; i++)
  1457. free (temp_array[i].transformed);
  1458. @}
  1459. @end smallexample
  1460. The interesting part of this code for the wide character version would
  1461. look like this:
  1462. @smallexample
  1463. void
  1464. sort_strings_fast (wchar_t **array, int nstrings)
  1465. @{
  1466. @dots{}
  1467. /* @r{Transform @code{array[i]}.} */
  1468. transformed_length = wcsxfrm (transformed, array[i], length);
  1469. /* @r{If the buffer was not large enough, resize it}
  1470. @r{and try again.} */
  1471. if (transformed_length >= length)
  1472. @{
  1473. /* @r{Allocate the needed space. +1 for terminating}
  1474. @r{@code{L'\0'} wide character.} */
  1475. transformed = xreallocarray (transformed,
  1476. transformed_length + 1,
  1477. sizeof *transformed);
  1478. /* @r{The return value is not interesting because we know}
  1479. @r{how long the transformed string is.} */
  1480. (void) wcsxfrm (transformed, array[i],
  1481. transformed_length + 1);
  1482. @}
  1483. @dots{}
  1484. @end smallexample
  1485. @noindent
  1486. Note the additional multiplication with @code{sizeof (wchar_t)} in the
  1487. @code{realloc} call.
  1488. @strong{Compatibility Note:} The string collation functions are a new
  1489. feature of @w{ISO C90}. Older C dialects have no equivalent feature.
  1490. The wide character versions were introduced in @w{Amendment 1} to @w{ISO
  1491. C90}.
  1492. @node Search Functions
  1493. @section Search Functions
  1494. This section describes library functions which perform various kinds
  1495. of searching operations on strings and arrays. These functions are
  1496. declared in the header file @file{string.h}.
  1497. @pindex string.h
  1498. @cindex search functions (for strings)
  1499. @cindex string search functions
  1500. @deftypefun {void *} memchr (const void *@var{block}, int @var{c}, size_t @var{size})
  1501. @standards{ISO, string.h}
  1502. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1503. This function finds the first occurrence of the byte @var{c} (converted
  1504. to an @code{unsigned char}) in the initial @var{size} bytes of the
  1505. object beginning at @var{block}. The return value is a pointer to the
  1506. located byte, or a null pointer if no match was found.
  1507. In ISO C23 and later, this function is qualifier-generic:
  1508. that is, it is also implemented as a function-like macro,
  1509. and when the macro is used and @var{block} has a type
  1510. that is a pointer to a @code{const}-qualified object type,
  1511. @code{memchr} returns @code{const void *}.
  1512. As an obsolescent feature, if the macro is suppressed
  1513. the external function returns @code{void *} regardless.
  1514. The function is also qualifier-generic in C++.
  1515. @end deftypefun
  1516. @deftypefun {wchar_t *} wmemchr (const wchar_t *@var{block}, wchar_t @var{wc}, size_t @var{size})
  1517. @standards{ISO, wchar.h}
  1518. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1519. This function finds the first occurrence of the wide character @var{wc}
  1520. in the initial @var{size} wide characters of the object beginning at
  1521. @var{block}. The return value is a pointer to the located wide
  1522. character, or a null pointer if no match was found.
  1523. In ISO C23 and later, this function is qualifier-generic:
  1524. that is, it is also implemented as a function-like macro,
  1525. and when the macro is used and @var{block} has a type
  1526. that is a pointer to a @code{const}-qualified object type,
  1527. @code{wmemchr} returns @code{const wchar_t *}.
  1528. As an obsolescent feature, if the macro is suppressed
  1529. the external function returns @code{wchar_t *} regardless.
  1530. The function is also qualifier-generic in C++.
  1531. @end deftypefun
  1532. @deftypefun {void *} rawmemchr (const void *@var{block}, int @var{c})
  1533. @standards{GNU, string.h}
  1534. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1535. Often the @code{memchr} function is used with the knowledge that the
  1536. byte @var{c} is available in the memory block specified by the
  1537. parameters. But this means that the @var{size} parameter is not really
  1538. needed and that the tests performed with it at runtime (to check whether
  1539. the end of the block is reached) are not needed.
  1540. The @code{rawmemchr} function exists for just this situation which is
  1541. surprisingly frequent. The interface is similar to @code{memchr} except
  1542. that the @var{size} parameter is missing. The function will look beyond
  1543. the end of the block pointed to by @var{block} in case the programmer
  1544. made an error in assuming that the byte @var{c} is present in the block.
  1545. In this case the result is unspecified. Otherwise the return value is a
  1546. pointer to the located byte.
  1547. When looking for the end of a string, use @code{strchr}.
  1548. This function is a GNU extension.
  1549. @end deftypefun
  1550. @deftypefun {void *} memrchr (const void *@var{block}, int @var{c}, size_t @var{size})
  1551. @standards{GNU, string.h}
  1552. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1553. The function @code{memrchr} is like @code{memchr}, except that it searches
  1554. backwards from the end of the block defined by @var{block} and @var{size}
  1555. (instead of forwards from the front).
  1556. This function is a GNU extension.
  1557. @end deftypefun
  1558. @deftypefun {char *} strchr (const char *@var{string}, int @var{c})
  1559. @standards{ISO, string.h}
  1560. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1561. The @code{strchr} function finds the first occurrence of the byte
  1562. @var{c} (converted to a @code{char}) in the string
  1563. beginning at @var{string}. The return value is a pointer to the located
  1564. byte, or a null pointer if no match was found.
  1565. For example,
  1566. @smallexample
  1567. strchr ("hello, world", 'l')
  1568. @result{} "llo, world"
  1569. strchr ("hello, world", '?')
  1570. @result{} NULL
  1571. @end smallexample
  1572. The terminating null byte is considered to be part of the string,
  1573. so you can use this function get a pointer to the end of a string by
  1574. specifying zero as the value of the @var{c} argument.
  1575. When @code{strchr} returns a null pointer, it does not let you know
  1576. the position of the terminating null byte it has found. If you
  1577. need that information, it is better (but less portable) to use
  1578. @code{strchrnul} than to search for it a second time.
  1579. In ISO C23 and later, this function is qualifier-generic:
  1580. that is, it is also implemented as a function-like macro,
  1581. and when the macro is used and @var{string} has a type
  1582. that is a pointer to a @code{const}-qualified object type,
  1583. @code{strchr} returns @code{const char *}.
  1584. As an obsolescent feature, if the macro is suppressed
  1585. the external function returns @code{char *} regardless.
  1586. The function is also qualifier-generic in C++.
  1587. @end deftypefun
  1588. @deftypefun {wchar_t *} wcschr (const wchar_t *@var{wstring}, wchar_t @var{wc})
  1589. @standards{ISO, wchar.h}
  1590. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1591. The @code{wcschr} function finds the first occurrence of the wide
  1592. character @var{wc} in the wide string
  1593. beginning at @var{wstring}. The return value is a pointer to the
  1594. located wide character, or a null pointer if no match was found.
  1595. The terminating null wide character is considered to be part of the wide
  1596. string, so you can use this function get a pointer to the end
  1597. of a wide string by specifying a null wide character as the
  1598. value of the @var{wc} argument. It would be better (but less portable)
  1599. to use @code{wcschrnul} in this case, though.
  1600. In ISO C23 and later, this function is qualifier-generic:
  1601. that is, it is also implemented as a function-like macro,
  1602. and when the macro is used and @var{wstring} has a type
  1603. that is a pointer to a @code{const}-qualified object type,
  1604. @code{wcschr} returns @code{const wchar_t *}.
  1605. As an obsolescent feature, if the macro is suppressed
  1606. the external function returns @code{wchar_t *} regardless.
  1607. The function is also qualifier-generic in C++.
  1608. @end deftypefun
  1609. @deftypefun {char *} strchrnul (const char *@var{string}, int @var{c})
  1610. @standards{GNU, string.h}
  1611. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1612. @code{strchrnul} is the same as @code{strchr} except that if it does
  1613. not find the byte, it returns a pointer to string's terminating
  1614. null byte rather than a null pointer.
  1615. This function is a GNU extension.
  1616. @end deftypefun
  1617. @deftypefun {wchar_t *} wcschrnul (const wchar_t *@var{wstring}, wchar_t @var{wc})
  1618. @standards{GNU, wchar.h}
  1619. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1620. @code{wcschrnul} is the same as @code{wcschr} except that if it does not
  1621. find the wide character, it returns a pointer to the wide string's
  1622. terminating null wide character rather than a null pointer.
  1623. This function is a GNU extension.
  1624. @end deftypefun
  1625. One useful, but unusual, use of the @code{strchr}
  1626. function is when one wants to have a pointer pointing to the null byte
  1627. terminating a string. This is often written in this way:
  1628. @smallexample
  1629. s += strlen (s);
  1630. @end smallexample
  1631. @noindent
  1632. This is almost optimal but the addition operation duplicated a bit of
  1633. the work already done in the @code{strlen} function. A better solution
  1634. is this:
  1635. @smallexample
  1636. s = strchr (s, '\0');
  1637. @end smallexample
  1638. There is no restriction on the second parameter of @code{strchr} so it
  1639. could very well also be zero. Those readers thinking very
  1640. hard about this might now point out that the @code{strchr} function is
  1641. more expensive than the @code{strlen} function since we have two abort
  1642. criteria. This is right. But in @theglibc{} the implementation of
  1643. @code{strchr} is optimized in a special way so that @code{strchr}
  1644. actually is faster.
  1645. @deftypefun {char *} strrchr (const char *@var{string}, int @var{c})
  1646. @standards{ISO, string.h}
  1647. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1648. The function @code{strrchr} is like @code{strchr}, except that it searches
  1649. backwards from the end of the string @var{string} (instead of forwards
  1650. from the front).
  1651. For example,
  1652. @smallexample
  1653. strrchr ("hello, world", 'l')
  1654. @result{} "ld"
  1655. @end smallexample
  1656. In ISO C23 and later, this function is qualifier-generic:
  1657. that is, it is also implemented as a function-like macro,
  1658. and when the macro is used and @var{string} has a type
  1659. that is a pointer to a @code{const}-qualified object type,
  1660. @code{strrchr} returns @code{const char *}.
  1661. As an obsolescent feature, if the macro is suppressed
  1662. the external function returns @code{char *} regardless.
  1663. The function is also qualifier-generic in C++.
  1664. @end deftypefun
  1665. @deftypefun {wchar_t *} wcsrchr (const wchar_t *@var{wstring}, wchar_t @var{wc})
  1666. @standards{ISO, wchar.h}
  1667. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1668. The function @code{wcsrchr} is like @code{wcschr}, except that it searches
  1669. backwards from the end of the string @var{wstring} (instead of forwards
  1670. from the front).
  1671. In ISO C23 and later, this function is qualifier-generic:
  1672. that is, it is also implemented as a function-like macro,
  1673. and when the macro is used and @var{wstring} has a type
  1674. that is a pointer to a @code{const}-qualified object type,
  1675. @code{wcsrchr} returns @code{const wchar_t *}.
  1676. As an obsolescent feature, if the macro is suppressed
  1677. the external function returns @code{wchar_t *} regardless.
  1678. The function is also qualifier-generic in C++.
  1679. @end deftypefun
  1680. @deftypefun {char *} strstr (const char *@var{haystack}, const char *@var{needle})
  1681. @standards{ISO, string.h}
  1682. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1683. This is like @code{strchr}, except that it searches @var{haystack} for a
  1684. substring @var{needle} rather than just a single byte. It
  1685. returns a pointer into the string @var{haystack} that is the first
  1686. byte of the substring, or a null pointer if no match was found. If
  1687. @var{needle} is an empty string, the function returns @var{haystack}.
  1688. For example,
  1689. @smallexample
  1690. strstr ("hello, world", "l")
  1691. @result{} "llo, world"
  1692. strstr ("hello, world", "wo")
  1693. @result{} "world"
  1694. @end smallexample
  1695. In ISO C23 and later, this function is qualifier-generic:
  1696. that is, it is also implemented as a function-like macro,
  1697. and when the macro is used and @var{haystack} has a type
  1698. that is a pointer to a @code{const}-qualified object type,
  1699. @code{strstr} returns @code{const char *}.
  1700. As an obsolescent feature, if the macro is suppressed
  1701. the external function returns @code{char *} regardless.
  1702. The function is also qualifier-generic in C++.
  1703. @end deftypefun
  1704. @deftypefun {wchar_t *} wcsstr (const wchar_t *@var{haystack}, const wchar_t *@var{needle})
  1705. @standards{ISO, wchar.h}
  1706. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1707. This is like @code{wcschr}, except that it searches @var{haystack} for a
  1708. substring @var{needle} rather than just a single wide character. It
  1709. returns a pointer into the string @var{haystack} that is the first wide
  1710. character of the substring, or a null pointer if no match was found. If
  1711. @var{needle} is an empty string, the function returns @var{haystack}.
  1712. In ISO C23 and later, this function is qualifier-generic:
  1713. that is, it is also implemented as a function-like macro,
  1714. and when the macro is used and @var{haystack} has a type
  1715. that is a pointer to a @code{const}-qualified object type,
  1716. @code{wcsstr} returns @code{const wchar_t *}.
  1717. As an obsolescent feature, if the macro is suppressed
  1718. the external function returns @code{wchar_t *} regardless.
  1719. The function is also qualifier-generic in C++.
  1720. @end deftypefun
  1721. @deftypefun {wchar_t *} wcswcs (const wchar_t *@var{haystack}, const wchar_t *@var{needle})
  1722. @standards{XPG, wchar.h}
  1723. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1724. @code{wcswcs} is a deprecated alias for @code{wcsstr}. This is the
  1725. name originally used in the X/Open Portability Guide before the
  1726. @w{Amendment 1} to @w{ISO C90} was published.
  1727. @end deftypefun
  1728. @deftypefun {char *} strcasestr (const char *@var{haystack}, const char *@var{needle})
  1729. @standards{GNU, string.h}
  1730. @safety{@prelim{}@mtsafe{@mtslocale{}}@assafe{}@acsafe{}}
  1731. @c There may be multiple calls of strncasecmp, each accessing the locale
  1732. @c object independently.
  1733. This is like @code{strstr}, except that it ignores case in searching for
  1734. the substring. Like @code{strcasecmp}, it is locale dependent how
  1735. uppercase and lowercase characters are related, and arguments are
  1736. multibyte strings.
  1737. For example,
  1738. @smallexample
  1739. strcasestr ("hello, world", "L")
  1740. @result{} "llo, world"
  1741. strcasestr ("hello, World", "wo")
  1742. @result{} "World"
  1743. @end smallexample
  1744. @end deftypefun
  1745. @deftypefun {void *} memmem (const void *@var{haystack}, size_t @var{haystack-len},@*const void *@var{needle}, size_t @var{needle-len})
  1746. @standards{POSIX.1-2024, string.h}
  1747. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1748. This is like @code{strstr}, but @var{needle} and @var{haystack} are byte
  1749. arrays rather than strings. @var{needle-len} is the
  1750. length of @var{needle} and @var{haystack-len} is the length of
  1751. @var{haystack}.
  1752. This function was originally a GNU extension, but was added in
  1753. POSIX.1-2024.
  1754. @end deftypefun
  1755. @deftypefun size_t strspn (const char *@var{string}, const char *@var{skipset})
  1756. @standards{ISO, string.h}
  1757. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1758. The @code{strspn} (``string span'') function returns the length of the
  1759. initial substring of @var{string} that consists entirely of bytes that
  1760. are members of the set specified by the string @var{skipset}. The order
  1761. of the bytes in @var{skipset} is not important.
  1762. For example,
  1763. @smallexample
  1764. strspn ("hello, world", "abcdefghijklmnopqrstuvwxyz")
  1765. @result{} 5
  1766. @end smallexample
  1767. In a multibyte string, characters consisting of
  1768. more than one byte are not treated as single entities. Each byte is treated
  1769. separately. The function is not locale-dependent.
  1770. @end deftypefun
  1771. @deftypefun size_t wcsspn (const wchar_t *@var{wstring}, const wchar_t *@var{skipset})
  1772. @standards{ISO, wchar.h}
  1773. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1774. The @code{wcsspn} (``wide character string span'') function returns the
  1775. length of the initial substring of @var{wstring} that consists entirely
  1776. of wide characters that are members of the set specified by the string
  1777. @var{skipset}. The order of the wide characters in @var{skipset} is not
  1778. important.
  1779. @end deftypefun
  1780. @deftypefun size_t strcspn (const char *@var{string}, const char *@var{stopset})
  1781. @standards{ISO, string.h}
  1782. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1783. The @code{strcspn} (``string complement span'') function returns the length
  1784. of the initial substring of @var{string} that consists entirely of bytes
  1785. that are @emph{not} members of the set specified by the string @var{stopset}.
  1786. (In other words, it returns the offset of the first byte in @var{string}
  1787. that is a member of the set @var{stopset}.)
  1788. For example,
  1789. @smallexample
  1790. strcspn ("hello, world", " \t\n,.;!?")
  1791. @result{} 5
  1792. @end smallexample
  1793. In a multibyte string, characters consisting of
  1794. more than one byte are not treated as a single entities. Each byte is treated
  1795. separately. The function is not locale-dependent.
  1796. @end deftypefun
  1797. @deftypefun size_t wcscspn (const wchar_t *@var{wstring}, const wchar_t *@var{stopset})
  1798. @standards{ISO, wchar.h}
  1799. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1800. The @code{wcscspn} (``wide character string complement span'') function
  1801. returns the length of the initial substring of @var{wstring} that
  1802. consists entirely of wide characters that are @emph{not} members of the
  1803. set specified by the string @var{stopset}. (In other words, it returns
  1804. the offset of the first wide character in @var{string} that is a member of
  1805. the set @var{stopset}.)
  1806. @end deftypefun
  1807. @deftypefun {char *} strpbrk (const char *@var{string}, const char *@var{stopset})
  1808. @standards{ISO, string.h}
  1809. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1810. The @code{strpbrk} (``string pointer break'') function is related to
  1811. @code{strcspn}, except that it returns a pointer to the first byte
  1812. in @var{string} that is a member of the set @var{stopset} instead of the
  1813. length of the initial substring. It returns a null pointer if no such
  1814. byte from @var{stopset} is found.
  1815. @c @group Invalid outside the example.
  1816. For example,
  1817. @smallexample
  1818. strpbrk ("hello, world", " \t\n,.;!?")
  1819. @result{} ", world"
  1820. @end smallexample
  1821. @c @end group
  1822. In a multibyte string, characters consisting of
  1823. more than one byte are not treated as single entities. Each byte is treated
  1824. separately. The function is not locale-dependent.
  1825. In ISO C23 and later, this function is qualifier-generic:
  1826. that is, it is also implemented as a function-like macro,
  1827. and when the macro is used and @var{string} has a type
  1828. that is a pointer to a @code{const}-qualified object type,
  1829. @code{strpbrk} returns @code{const char *}.
  1830. As an obsolescent feature, if the macro is suppressed
  1831. the external function returns @code{char *} regardless.
  1832. The function is also qualifier-generic in C++.
  1833. @end deftypefun
  1834. @deftypefun {wchar_t *} wcspbrk (const wchar_t *@var{wstring}, const wchar_t *@var{stopset})
  1835. @standards{ISO, wchar.h}
  1836. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1837. The @code{wcspbrk} (``wide character string pointer break'') function is
  1838. related to @code{wcscspn}, except that it returns a pointer to the first
  1839. wide character in @var{wstring} that is a member of the set
  1840. @var{stopset} instead of the length of the initial substring. It
  1841. returns a null pointer if no such wide character from @var{stopset} is found.
  1842. In ISO C23 and later, this function is qualifier-generic:
  1843. that is, it is also implemented as a function-like macro,
  1844. and when the macro is used and @var{wstring} has a type
  1845. that is a pointer to a @code{const}-qualified object type,
  1846. @code{wcspbrk} returns @code{const wchar_t *}.
  1847. As an obsolescent feature, if the macro is suppressed
  1848. the external function returns @code{wchar_t *} regardless.
  1849. The function is also qualifier-generic in C++.
  1850. @end deftypefun
  1851. @subsection Compatibility String Search Functions
  1852. @deftypefun {char *} index (const char *@var{string}, int @var{c})
  1853. @standards{BSD, string.h}
  1854. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1855. @code{index} is another name for @code{strchr}; they are exactly the same.
  1856. New code should always use @code{strchr} since this name is defined in
  1857. @w{ISO C} while @code{index} is a BSD invention which never was available
  1858. on @w{System V} derived systems.
  1859. @end deftypefun
  1860. @deftypefun {char *} rindex (const char *@var{string}, int @var{c})
  1861. @standards{BSD, string.h}
  1862. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1863. @code{rindex} is another name for @code{strrchr}; they are exactly the same.
  1864. New code should always use @code{strrchr} since this name is defined in
  1865. @w{ISO C} while @code{rindex} is a BSD invention which never was available
  1866. on @w{System V} derived systems.
  1867. @end deftypefun
  1868. @node Finding Tokens in a String
  1869. @section Finding Tokens in a String
  1870. @cindex tokenizing strings
  1871. @cindex breaking a string into tokens
  1872. @cindex parsing tokens from a string
  1873. It's fairly common for programs to have a need to do some simple kinds
  1874. of lexical analysis and parsing, such as splitting a command string up
  1875. into tokens. You can do this with the @code{strtok} function, declared
  1876. in the header file @file{string.h}.
  1877. @pindex string.h
  1878. @deftypefun {char *} strtok (char *restrict @var{newstring}, const char *restrict @var{delimiters})
  1879. @standards{ISO, string.h}
  1880. @safety{@prelim{}@mtunsafe{@mtasurace{:strtok}}@asunsafe{}@acsafe{}}
  1881. A string can be split into tokens by making a series of calls to the
  1882. function @code{strtok}.
  1883. The string to be split up is passed as the @var{newstring} argument on
  1884. the first call only. The @code{strtok} function uses this to set up
  1885. some internal state information. Subsequent calls to get additional
  1886. tokens from the same string are indicated by passing a null pointer as
  1887. the @var{newstring} argument. Calling @code{strtok} with another
  1888. non-null @var{newstring} argument reinitializes the state information.
  1889. It is guaranteed that no other library function ever calls @code{strtok}
  1890. behind your back (which would mess up this internal state information).
  1891. The @var{delimiters} argument is a string that specifies a set of delimiters
  1892. that may surround the token being extracted. All the initial bytes
  1893. that are members of this set are discarded. The first byte that is
  1894. @emph{not} a member of this set of delimiters marks the beginning of the
  1895. next token. The end of the token is found by looking for the next
  1896. byte that is a member of the delimiter set. This byte in the
  1897. original string @var{newstring} is overwritten by a null byte, and the
  1898. pointer to the beginning of the token in @var{newstring} is returned.
  1899. On the next call to @code{strtok}, the searching begins at the next
  1900. byte beyond the one that marked the end of the previous token.
  1901. Note that the set of delimiters @var{delimiters} do not have to be the
  1902. same on every call in a series of calls to @code{strtok}.
  1903. If the end of the string @var{newstring} is reached, or if the remainder of
  1904. string consists only of delimiter bytes, @code{strtok} returns
  1905. a null pointer.
  1906. In a multibyte string, characters consisting of
  1907. more than one byte are not treated as single entities. Each byte is treated
  1908. separately. The function is not locale-dependent.
  1909. @end deftypefun
  1910. @deftypefun {wchar_t *} wcstok (wchar_t *@var{newstring}, const wchar_t *@var{delimiters}, wchar_t **@var{save_ptr})
  1911. @standards{ISO, wchar.h}
  1912. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1913. A string can be split into tokens by making a series of calls to the
  1914. function @code{wcstok}.
  1915. The string to be split up is passed as the @var{newstring} argument on
  1916. the first call only. The @code{wcstok} function uses this to set up
  1917. some internal state information. Subsequent calls to get additional
  1918. tokens from the same wide string are indicated by passing a
  1919. null pointer as the @var{newstring} argument, which causes the pointer
  1920. previously stored in @var{save_ptr} to be used instead.
  1921. The @var{delimiters} argument is a wide string that specifies
  1922. a set of delimiters that may surround the token being extracted. All
  1923. the initial wide characters that are members of this set are discarded.
  1924. The first wide character that is @emph{not} a member of this set of
  1925. delimiters marks the beginning of the next token. The end of the token
  1926. is found by looking for the next wide character that is a member of the
  1927. delimiter set. This wide character in the original wide
  1928. string @var{newstring} is overwritten by a null wide character, the
  1929. pointer past the overwritten wide character is saved in @var{save_ptr},
  1930. and the pointer to the beginning of the token in @var{newstring} is
  1931. returned.
  1932. On the next call to @code{wcstok}, the searching begins at the next
  1933. wide character beyond the one that marked the end of the previous token.
  1934. Note that the set of delimiters @var{delimiters} do not have to be the
  1935. same on every call in a series of calls to @code{wcstok}.
  1936. If the end of the wide string @var{newstring} is reached, or
  1937. if the remainder of string consists only of delimiter wide characters,
  1938. @code{wcstok} returns a null pointer.
  1939. @end deftypefun
  1940. @strong{Warning:} Since @code{strtok} and @code{wcstok} alter the string
  1941. they is parsing, you should always copy the string to a temporary buffer
  1942. before parsing it with @code{strtok}/@code{wcstok} (@pxref{Copying Strings
  1943. and Arrays}). If you allow @code{strtok} or @code{wcstok} to modify
  1944. a string that came from another part of your program, you are asking for
  1945. trouble; that string might be used for other purposes after
  1946. @code{strtok} or @code{wcstok} has modified it, and it would not have
  1947. the expected value.
  1948. The string that you are operating on might even be a constant. Then
  1949. when @code{strtok} or @code{wcstok} tries to modify it, your program
  1950. will get a fatal signal for writing in read-only memory. @xref{Program
  1951. Error Signals}. Even if the operation of @code{strtok} or @code{wcstok}
  1952. would not require a modification of the string (e.g., if there is
  1953. exactly one token) the string can (and in the @glibcadj{} case will) be
  1954. modified.
  1955. This is a special case of a general principle: if a part of a program
  1956. does not have as its purpose the modification of a certain data
  1957. structure, then it is error-prone to modify the data structure
  1958. temporarily.
  1959. The function @code{strtok} is not reentrant, whereas @code{wcstok} is.
  1960. @xref{Nonreentrancy}, for a discussion of where and why reentrancy is
  1961. important.
  1962. Here is a simple example showing the use of @code{strtok}.
  1963. @comment Yes, this example has been tested.
  1964. @smallexample
  1965. #include <string.h>
  1966. #include <stddef.h>
  1967. @dots{}
  1968. const char string[] = "words separated by spaces -- and, punctuation!";
  1969. const char delimiters[] = " .,;:!-";
  1970. char *token, *cp;
  1971. @dots{}
  1972. cp = strdupa (string); /* Make writable copy. */
  1973. token = strtok (cp, delimiters); /* token => "words" */
  1974. token = strtok (NULL, delimiters); /* token => "separated" */
  1975. token = strtok (NULL, delimiters); /* token => "by" */
  1976. token = strtok (NULL, delimiters); /* token => "spaces" */
  1977. token = strtok (NULL, delimiters); /* token => "and" */
  1978. token = strtok (NULL, delimiters); /* token => "punctuation" */
  1979. token = strtok (NULL, delimiters); /* token => NULL */
  1980. @end smallexample
  1981. @Theglibc{} contains two more functions for tokenizing a string
  1982. which overcome the limitation of non-reentrancy. They are not
  1983. available available for wide strings.
  1984. @deftypefun {char *} strtok_r (char *@var{newstring}, const char *@var{delimiters}, char **@var{save_ptr})
  1985. @standards{POSIX, string.h}
  1986. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  1987. Just like @code{strtok}, this function splits the string into several
  1988. tokens which can be accessed by successive calls to @code{strtok_r}.
  1989. The difference is that, as in @code{wcstok}, the information about the
  1990. next token is stored in the space pointed to by the third argument,
  1991. @var{save_ptr}, which is a pointer to a string pointer. Calling
  1992. @code{strtok_r} with a null pointer for @var{newstring} and leaving
  1993. @var{save_ptr} between the calls unchanged does the job without
  1994. hindering reentrancy.
  1995. This function is defined in POSIX.1 and can be found on many systems
  1996. which support multi-threading.
  1997. @end deftypefun
  1998. @deftypefun {char *} strsep (char **@var{string_ptr}, const char *@var{delimiter})
  1999. @standards{BSD, string.h}
  2000. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  2001. This function has a similar functionality as @code{strtok_r} with the
  2002. @var{newstring} argument replaced by the @var{save_ptr} argument. The
  2003. initialization of the moving pointer has to be done by the user.
  2004. Successive calls to @code{strsep} move the pointer along the tokens
  2005. separated by @var{delimiter}, returning the address of the next token
  2006. and updating @var{string_ptr} to point to the beginning of the next
  2007. token.
  2008. One difference between @code{strsep} and @code{strtok_r} is that if the
  2009. input string contains more than one byte from @var{delimiter} in a
  2010. row @code{strsep} returns an empty string for each pair of bytes
  2011. from @var{delimiter}. This means that a program normally should test
  2012. for @code{strsep} returning an empty string before processing it.
  2013. This function was introduced in 4.3BSD and therefore is widely available.
  2014. @end deftypefun
  2015. Here is how the above example looks like when @code{strsep} is used.
  2016. @comment Yes, this example has been tested.
  2017. @smallexample
  2018. #include <string.h>
  2019. #include <stddef.h>
  2020. @dots{}
  2021. const char string[] = "words separated by spaces -- and, punctuation!";
  2022. const char delimiters[] = " .,;:!-";
  2023. char *running;
  2024. char *token;
  2025. @dots{}
  2026. running = strdupa (string);
  2027. token = strsep (&running, delimiters); /* token => "words" */
  2028. token = strsep (&running, delimiters); /* token => "separated" */
  2029. token = strsep (&running, delimiters); /* token => "by" */
  2030. token = strsep (&running, delimiters); /* token => "spaces" */
  2031. token = strsep (&running, delimiters); /* token => "" */
  2032. token = strsep (&running, delimiters); /* token => "" */
  2033. token = strsep (&running, delimiters); /* token => "" */
  2034. token = strsep (&running, delimiters); /* token => "and" */
  2035. token = strsep (&running, delimiters); /* token => "" */
  2036. token = strsep (&running, delimiters); /* token => "punctuation" */
  2037. token = strsep (&running, delimiters); /* token => "" */
  2038. token = strsep (&running, delimiters); /* token => NULL */
  2039. @end smallexample
  2040. @deftypefun {char *} basename (const char *@var{filename})
  2041. @standards{GNU, string.h}
  2042. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  2043. The GNU version of the @code{basename} function returns the last
  2044. component of the path in @var{filename}. This function is the preferred
  2045. usage, since it does not modify the argument, @var{filename}, and
  2046. respects trailing slashes. The prototype for @code{basename} can be
  2047. found in @file{string.h}. Note, this function is overridden by the XPG
  2048. version, if @file{libgen.h} is included.
  2049. Example of using GNU @code{basename}:
  2050. @smallexample
  2051. #include <string.h>
  2052. int
  2053. main (int argc, char *argv[])
  2054. @{
  2055. char *prog = basename (argv[0]);
  2056. if (argc < 2)
  2057. @{
  2058. fprintf (stderr, "Usage %s <arg>\n", prog);
  2059. exit (1);
  2060. @}
  2061. @dots{}
  2062. @}
  2063. @end smallexample
  2064. @strong{Portability Note:} This function may produce different results
  2065. on different systems.
  2066. @end deftypefun
  2067. @deftypefun {char *} basename (char *@var{path})
  2068. @standards{XPG, libgen.h}
  2069. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  2070. This is the standard XPG defined @code{basename}. It is similar in
  2071. spirit to the GNU version, but may modify the @var{path} by removing
  2072. trailing '/' bytes. If the @var{path} is made up entirely of '/'
  2073. bytes, then "/" will be returned. Also, if @var{path} is
  2074. @code{NULL} or an empty string, then "." is returned. The prototype for
  2075. the XPG version can be found in @file{libgen.h}.
  2076. Example of using XPG @code{basename}:
  2077. @smallexample
  2078. #include <libgen.h>
  2079. int
  2080. main (int argc, char *argv[])
  2081. @{
  2082. char *prog;
  2083. char *path = strdupa (argv[0]);
  2084. prog = basename (path);
  2085. if (argc < 2)
  2086. @{
  2087. fprintf (stderr, "Usage %s <arg>\n", prog);
  2088. exit (1);
  2089. @}
  2090. @dots{}
  2091. @}
  2092. @end smallexample
  2093. @end deftypefun
  2094. @deftypefun {char *} dirname (char *@var{path})
  2095. @standards{XPG, libgen.h}
  2096. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  2097. The @code{dirname} function is the compliment to the XPG version of
  2098. @code{basename}. It returns the parent directory of the file specified
  2099. by @var{path}. If @var{path} is @code{NULL}, an empty string, or
  2100. contains no '/' bytes, then "." is returned. The prototype for this
  2101. function can be found in @file{libgen.h}.
  2102. @end deftypefun
  2103. @node Erasing Sensitive Data
  2104. @section Erasing Sensitive Data
  2105. Sensitive data, such as cryptographic keys, should be erased from
  2106. memory after use, to reduce the risk that a bug will expose it to the
  2107. outside world. However, compiler optimizations may determine that an
  2108. erasure operation is ``unnecessary,'' and remove it from the generated
  2109. code, because no @emph{correct} program could access the variable or
  2110. heap object containing the sensitive data after it's deallocated.
  2111. Since erasure is a precaution against bugs, this optimization is
  2112. inappropriate.
  2113. The functions @code{explicit_bzero} and @code{memset_explicit} erase a
  2114. block of memory, and guarantee that the compiler will not remove the erasure as
  2115. ``unnecessary.''
  2116. @smallexample
  2117. @group
  2118. #include <string.h>
  2119. extern void encrypt (const char *key, const char *in,
  2120. char *out, size_t n);
  2121. extern void genkey (const char *phrase, char *key);
  2122. void encrypt_with_phrase (const char *phrase, const char *in,
  2123. char *out, size_t n)
  2124. @{
  2125. char key[16];
  2126. genkey (phrase, key);
  2127. encrypt (key, in, out, n);
  2128. explicit_bzero (key, 16);
  2129. @}
  2130. @end group
  2131. @end smallexample
  2132. @noindent
  2133. In this example, if @code{memset}, @code{bzero}, or a hand-written
  2134. loop had been used, the compiler might remove them as ``unnecessary.''
  2135. @strong{Warning:} @code{explicit_bzero} and @code{memset_explicit} do
  2136. not guarantee that
  2137. sensitive data is @emph{completely} erased from the computer's memory.
  2138. There may be copies in temporary storage areas, such as registers and
  2139. ``scratch'' stack space; since these are invisible to the source code,
  2140. a library function cannot erase them.
  2141. Also, @code{explicit_bzero} and @code{memset_explicit} only operate on
  2142. RAM. If a sensitive data object never needs to have its address taken
  2143. other than to call @code{explicit_bzero} or @code{memset_explicit}, it
  2144. might be stored entirely in CPU registers @emph{until} the call to
  2145. @code{explicit_bzero} or @code{memset_explicit}. Then it will be
  2146. copied into RAM, the copy will be erased, and the original will remain
  2147. intact. Data in RAM is more likely to be exposed by a bug than data
  2148. in registers, so this creates a brief window where the data is at
  2149. greater risk of exposure than it would have been if the program didn't
  2150. try to erase it at all.
  2151. Declaring sensitive variables as @code{volatile} will make both the
  2152. above problems @emph{worse}; a @code{volatile} variable will be stored
  2153. in memory for its entire lifetime, and the compiler will make
  2154. @emph{more} copies of it than it would otherwise have. Attempting to
  2155. erase a normal variable ``by hand'' through a
  2156. @code{volatile}-qualified pointer doesn't work at all---because the
  2157. variable itself is not @code{volatile}, some compilers will ignore the
  2158. qualification on the pointer and remove the erasure anyway.
  2159. Having said all that, in most situations, using @code{explicit_bzero}
  2160. or @code{memset_explicit}
  2161. is better than not using it. At present, the only way to do a more
  2162. thorough job is to write the entire sensitive operation in assembly
  2163. language. We anticipate that future compilers will recognize calls to
  2164. @code{explicit_bzero} or @code{memset_explicit} and take appropriate
  2165. steps to erase all the
  2166. copies of the affected data, wherever they may be.
  2167. @deftypefun void explicit_bzero (void *@var{block}, size_t @var{len})
  2168. @standards{BSD, string.h}
  2169. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  2170. @code{explicit_bzero} writes zero into @var{len} bytes of memory
  2171. beginning at @var{block}, just as @code{bzero} would. The zeroes are
  2172. always written, even if the compiler could determine that this is
  2173. ``unnecessary'' because no correct program could read them back.
  2174. @strong{Note:} The @emph{only} optimization that @code{explicit_bzero}
  2175. disables is removal of ``unnecessary'' writes to memory. The compiler
  2176. can perform all the other optimizations that it could for a call to
  2177. @code{memset}. For instance, it may replace the function call with
  2178. inline memory writes, and it may assume that @var{block} cannot be a
  2179. null pointer.
  2180. @strong{Portability Note:} This function first appeared in OpenBSD 5.5
  2181. and has not been standardized. Other systems may provide the same
  2182. functionality under a different name, such as @code{explicit_memset},
  2183. @code{memset_s}, or @code{SecureZeroMemory}.
  2184. @Theglibc{} declares this function in @file{string.h}, but on other
  2185. systems it may be in @file{strings.h} instead.
  2186. @end deftypefun
  2187. @deftypefun {void *} memset_explicit (void *@var{block}, int @var{c}, size_t @var{size})
  2188. @standards{C23, string.h}
  2189. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  2190. This function copies the value of @var{c} (converted to an
  2191. @code{unsigned char}) into each of the first @var{size} bytes of the
  2192. object beginning at @var{block}, just as @code{memset} would. It
  2193. returns the value of @var{block}. The bytes are always written, even
  2194. if the compiler could determine that this is ``unnecessary'' because
  2195. no correct program could read them back.
  2196. @strong{Note:} The @emph{only} optimization that @code{memset_explicit}
  2197. disables is removal of ``unnecessary'' writes to memory. The compiler
  2198. can perform all the other optimizations that it could for a call to
  2199. @code{memset}. For instance, it may replace the function call with
  2200. inline memory writes, and it may assume that @var{block} cannot be a
  2201. null pointer.
  2202. @end deftypefun
  2203. @node Shuffling Bytes
  2204. @section Shuffling Bytes
  2205. The function below addresses the perennial programming quandary: ``How do
  2206. I take good data in string form and painlessly turn it into garbage?''
  2207. This is not a difficult thing to code for oneself, but the authors of
  2208. @theglibc{} wish to make it as convenient as possible.
  2209. To @emph{erase} data, use @code{explicit_bzero} (@pxref{Erasing
  2210. Sensitive Data}); to obfuscate it reversibly, use @code{memfrob}
  2211. (@pxref{Obfuscating Data}).
  2212. @deftypefun {char *} strfry (char *@var{string})
  2213. @standards{GNU, string.h}
  2214. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  2215. @c Calls initstate_r, time, getpid, strlen, and random_r.
  2216. @code{strfry} performs an in-place shuffle on @var{string}. Each
  2217. character is swapped to a position selected at random, within the
  2218. portion of the string starting with the character's original position.
  2219. (This is the Fisher-Yates algorithm for unbiased shuffling.)
  2220. Calling @code{strfry} will not disturb any of the random number
  2221. generators that have global state (@pxref{Pseudo-Random Numbers}).
  2222. The return value of @code{strfry} is always @var{string}.
  2223. @strong{Portability Note:} This function is unique to @theglibc{}.
  2224. It is declared in @file{string.h}.
  2225. @end deftypefun
  2226. @node Obfuscating Data
  2227. @section Obfuscating Data
  2228. @cindex Rot13
  2229. The @code{memfrob} function reversibly obfuscates an array of binary
  2230. data. This is not true encryption; the obfuscated data still bears a
  2231. clear relationship to the original, and no secret key is required to
  2232. undo the obfuscation. It is analogous to the ``Rot13'' cipher used on
  2233. Usenet for obscuring offensive jokes, spoilers for works of fiction,
  2234. and so on, but it can be applied to arbitrary binary data.
  2235. Programs that need true encryption---a transformation that completely
  2236. obscures the original and cannot be reversed without knowledge of a
  2237. secret key---should use a dedicated cryptography library, such as
  2238. @uref{https://www.gnu.org/software/libgcrypt/,,libgcrypt}.
  2239. Programs that need to @emph{destroy} data should use
  2240. @code{explicit_bzero} (@pxref{Erasing Sensitive Data}), or possibly
  2241. @code{strfry} (@pxref{Shuffling Bytes}).
  2242. @deftypefun {void *} memfrob (void *@var{mem}, size_t @var{length})
  2243. @standards{GNU, string.h}
  2244. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  2245. The function @code{memfrob} obfuscates @var{length} bytes of data
  2246. beginning at @var{mem}, in place. Each byte is bitwise xor-ed with
  2247. the binary pattern 00101010 (hexadecimal 0x2A). The return value is
  2248. always @var{mem}.
  2249. @code{memfrob} a second time on the same data returns it to
  2250. its original state.
  2251. @strong{Portability Note:} This function is unique to @theglibc{}.
  2252. It is declared in @file{string.h}.
  2253. @end deftypefun
  2254. @node Encode Binary Data
  2255. @section Encode Binary Data
  2256. To store or transfer binary data in environments which only support text
  2257. one has to encode the binary data by mapping the input bytes to
  2258. bytes in the range allowed for storing or transferring. SVID
  2259. systems (and nowadays XPG compliant systems) provide minimal support for
  2260. this task.
  2261. @deftypefun {char *} l64a (long int @var{n})
  2262. @standards{XPG, stdlib.h}
  2263. @safety{@prelim{}@mtunsafe{@mtasurace{:l64a}}@asunsafe{}@acsafe{}}
  2264. This function encodes a 32-bit input value using bytes from the
  2265. basic character set. It returns a pointer to a 7 byte buffer which
  2266. contains an encoded version of @var{n}. To encode a series of bytes the
  2267. user must copy the returned string to a destination buffer. It returns
  2268. the empty string if @var{n} is zero, which is somewhat bizarre but
  2269. mandated by the standard.@*
  2270. @strong{Warning:} Since a static buffer is used this function should not
  2271. be used in multi-threaded programs. There is no thread-safe alternative
  2272. to this function in the C library.@*
  2273. @strong{Compatibility Note:} The XPG standard states that the return
  2274. value of @code{l64a} is undefined if @var{n} is negative. In the GNU
  2275. implementation, @code{l64a} treats its argument as unsigned, so it will
  2276. return a sensible encoding for any nonzero @var{n}; however, portable
  2277. programs should not rely on this.
  2278. To encode a large buffer @code{l64a} must be called in a loop, once for
  2279. each 32-bit word of the buffer. For example, one could do something
  2280. like this:
  2281. @smallexample
  2282. char *
  2283. encode (const void *buf, size_t len)
  2284. @{
  2285. /* @r{We know in advance how long the buffer has to be.} */
  2286. unsigned char *in = (unsigned char *) buf;
  2287. char *out = malloc (6 + ((len + 3) / 4) * 6 + 1);
  2288. char *cp = out, *p;
  2289. /* @r{Encode the length.} */
  2290. /* @r{Using `htonl' is necessary so that the data can be}
  2291. @r{decoded even on machines with different byte order.}
  2292. @r{`l64a' can return a string shorter than 6 bytes, so }
  2293. @r{we pad it with encoding of 0 (}'.'@r{) at the end by }
  2294. @r{hand.} */
  2295. p = stpcpy (cp, l64a (htonl (len)));
  2296. cp = mempcpy (p, "......", 6 - (p - cp));
  2297. while (len > 3)
  2298. @{
  2299. unsigned long int n = *in++;
  2300. n = (n << 8) | *in++;
  2301. n = (n << 8) | *in++;
  2302. n = (n << 8) | *in++;
  2303. len -= 4;
  2304. p = stpcpy (cp, l64a (htonl (n)));
  2305. cp = mempcpy (p, "......", 6 - (p - cp));
  2306. @}
  2307. if (len > 0)
  2308. @{
  2309. unsigned long int n = *in++;
  2310. if (--len > 0)
  2311. @{
  2312. n = (n << 8) | *in++;
  2313. if (--len > 0)
  2314. n = (n << 8) | *in;
  2315. @}
  2316. cp = stpcpy (cp, l64a (htonl (n)));
  2317. @}
  2318. *cp = '\0';
  2319. return out;
  2320. @}
  2321. @end smallexample
  2322. It is strange that the library does not provide the complete
  2323. functionality needed but so be it.
  2324. @end deftypefun
  2325. To decode data produced with @code{l64a} the following function should be
  2326. used.
  2327. @deftypefun {long int} a64l (const char *@var{string})
  2328. @standards{XPG, stdlib.h}
  2329. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  2330. The parameter @var{string} should contain a string which was produced by
  2331. a call to @code{l64a}. The function processes at least 6 bytes of
  2332. this string, and decodes the bytes it finds according to the table
  2333. below. It stops decoding when it finds a byte not in the table,
  2334. rather like @code{atoi}; if you have a buffer which has been broken into
  2335. lines, you must be careful to skip over the end-of-line bytes.
  2336. The decoded number is returned as a @code{long int} value.
  2337. @end deftypefun
  2338. The @code{l64a} and @code{a64l} functions use a base 64 encoding, in
  2339. which each byte of an encoded string represents six bits of an
  2340. input word. These symbols are used for the base 64 digits:
  2341. @multitable {xxxxx} {xxx} {xxx} {xxx} {xxx} {xxx} {xxx} {xxx} {xxx}
  2342. @item @tab 0 @tab 1 @tab 2 @tab 3 @tab 4 @tab 5 @tab 6 @tab 7
  2343. @item 0 @tab @code{.} @tab @code{/} @tab @code{0} @tab @code{1}
  2344. @tab @code{2} @tab @code{3} @tab @code{4} @tab @code{5}
  2345. @item 8 @tab @code{6} @tab @code{7} @tab @code{8} @tab @code{9}
  2346. @tab @code{A} @tab @code{B} @tab @code{C} @tab @code{D}
  2347. @item 16 @tab @code{E} @tab @code{F} @tab @code{G} @tab @code{H}
  2348. @tab @code{I} @tab @code{J} @tab @code{K} @tab @code{L}
  2349. @item 24 @tab @code{M} @tab @code{N} @tab @code{O} @tab @code{P}
  2350. @tab @code{Q} @tab @code{R} @tab @code{S} @tab @code{T}
  2351. @item 32 @tab @code{U} @tab @code{V} @tab @code{W} @tab @code{X}
  2352. @tab @code{Y} @tab @code{Z} @tab @code{a} @tab @code{b}
  2353. @item 40 @tab @code{c} @tab @code{d} @tab @code{e} @tab @code{f}
  2354. @tab @code{g} @tab @code{h} @tab @code{i} @tab @code{j}
  2355. @item 48 @tab @code{k} @tab @code{l} @tab @code{m} @tab @code{n}
  2356. @tab @code{o} @tab @code{p} @tab @code{q} @tab @code{r}
  2357. @item 56 @tab @code{s} @tab @code{t} @tab @code{u} @tab @code{v}
  2358. @tab @code{w} @tab @code{x} @tab @code{y} @tab @code{z}
  2359. @end multitable
  2360. This encoding scheme is not standard. There are some other encoding
  2361. methods which are much more widely used (UU encoding, MIME encoding).
  2362. Generally, it is better to use one of these encodings.
  2363. @node Argz and Envz Vectors
  2364. @section Argz and Envz Vectors
  2365. @cindex argz vectors (string vectors)
  2366. @cindex string vectors, null-byte separated
  2367. @cindex argument vectors, null-byte separated
  2368. @dfn{argz vectors} are vectors of strings in a contiguous block of
  2369. memory, each element separated from its neighbors by null bytes
  2370. (@code{'\0'}).
  2371. @cindex envz vectors (environment vectors)
  2372. @cindex environment vectors, null-byte separated
  2373. @dfn{Envz vectors} are an extension of argz vectors where each element is a
  2374. name-value pair, separated by a @code{'='} byte (as in a Unix
  2375. environment).
  2376. @menu
  2377. * Argz Functions:: Operations on argz vectors.
  2378. * Envz Functions:: Additional operations on environment vectors.
  2379. @end menu
  2380. @node Argz Functions, Envz Functions, , Argz and Envz Vectors
  2381. @subsection Argz Functions
  2382. Each argz vector is represented by a pointer to the first element, of
  2383. type @code{char *}, and a size, of type @code{size_t}, both of which can
  2384. be initialized to @code{0} to represent an empty argz vector. All argz
  2385. functions accept either a pointer and a size argument, or pointers to
  2386. them, if they will be modified.
  2387. The argz functions use @code{malloc}/@code{realloc} to allocate/grow
  2388. argz vectors, and so any argz vector created using these functions may
  2389. be freed by using @code{free}; conversely, any argz function that may
  2390. grow a string expects that string to have been allocated using
  2391. @code{malloc} (those argz functions that only examine their arguments or
  2392. modify them in place will work on any sort of memory).
  2393. @xref{Unconstrained Allocation}.
  2394. All argz functions that do memory allocation have a return type of
  2395. @code{error_t}, and return @code{0} for success, and @code{ENOMEM} if an
  2396. allocation error occurs.
  2397. @pindex argz.h
  2398. These functions are declared in the standard include file @file{argz.h}.
  2399. @deftypefun {error_t} argz_create (char *const @var{argv}[], char **@var{argz}, size_t *@var{argz_len})
  2400. @standards{GNU, argz.h}
  2401. @safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
  2402. The @code{argz_create} function converts the Unix-style argument vector
  2403. @var{argv} (a vector of pointers to normal C strings, terminated by
  2404. @code{(char *)0}; @pxref{Program Arguments}) into an argz vector with
  2405. the same elements, which is returned in @var{argz} and @var{argz_len}.
  2406. @end deftypefun
  2407. @deftypefun {error_t} argz_create_sep (const char *@var{string}, int @var{sep}, char **@var{argz}, size_t *@var{argz_len})
  2408. @standards{GNU, argz.h}
  2409. @safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
  2410. The @code{argz_create_sep} function converts the string
  2411. @var{string} into an argz vector (returned in @var{argz} and
  2412. @var{argz_len}) by splitting it into elements at every occurrence of the
  2413. byte @var{sep}.
  2414. @end deftypefun
  2415. @deftypefun {size_t} argz_count (const char *@var{argz}, size_t @var{argz_len})
  2416. @standards{GNU, argz.h}
  2417. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  2418. Returns the number of elements in the argz vector @var{argz} and
  2419. @var{argz_len}.
  2420. @end deftypefun
  2421. @deftypefun {void} argz_extract (const char *@var{argz}, size_t @var{argz_len}, char **@var{argv})
  2422. @standards{GNU, argz.h}
  2423. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  2424. The @code{argz_extract} function converts the argz vector @var{argz} and
  2425. @var{argz_len} into a Unix-style argument vector stored in @var{argv},
  2426. by putting pointers to every element in @var{argz} into successive
  2427. positions in @var{argv}, followed by a terminator of @code{0}.
  2428. @var{Argv} must be pre-allocated with enough space to hold all the
  2429. elements in @var{argz} plus the terminating @code{(char *)0}
  2430. (@code{(argz_count (@var{argz}, @var{argz_len}) + 1) * sizeof (char *)}
  2431. bytes should be enough). Note that the string pointers stored into
  2432. @var{argv} point into @var{argz}---they are not copies---and so
  2433. @var{argz} must be copied if it will be changed while @var{argv} is
  2434. still active. This function is useful for passing the elements in
  2435. @var{argz} to an exec function (@pxref{Executing a File}).
  2436. @end deftypefun
  2437. @deftypefun {void} argz_stringify (char *@var{argz}, size_t @var{len}, int @var{sep})
  2438. @standards{GNU, argz.h}
  2439. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  2440. The @code{argz_stringify} converts @var{argz} into a normal string with
  2441. the elements separated by the byte @var{sep}, by replacing each
  2442. @code{'\0'} inside @var{argz} (except the last one, which terminates the
  2443. string) with @var{sep}. This is handy for printing @var{argz} in a
  2444. readable manner.
  2445. @end deftypefun
  2446. @deftypefun {error_t} argz_add (char **@var{argz}, size_t *@var{argz_len}, const char *@var{str})
  2447. @standards{GNU, argz.h}
  2448. @safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
  2449. @c Calls strlen and argz_append.
  2450. The @code{argz_add} function adds the string @var{str} to the end of the
  2451. argz vector @code{*@var{argz}}, and updates @code{*@var{argz}} and
  2452. @code{*@var{argz_len}} accordingly.
  2453. @end deftypefun
  2454. @deftypefun {error_t} argz_add_sep (char **@var{argz}, size_t *@var{argz_len}, const char *@var{str}, int @var{delim})
  2455. @standards{GNU, argz.h}
  2456. @safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
  2457. The @code{argz_add_sep} function is similar to @code{argz_add}, but
  2458. @var{str} is split into separate elements in the result at occurrences of
  2459. the byte @var{delim}. This is useful, for instance, for
  2460. adding the components of a Unix search path to an argz vector, by using
  2461. a value of @code{':'} for @var{delim}.
  2462. @end deftypefun
  2463. @deftypefun {error_t} argz_append (char **@var{argz}, size_t *@var{argz_len}, const char *@var{buf}, size_t @var{buf_len})
  2464. @standards{GNU, argz.h}
  2465. @safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
  2466. The @code{argz_append} function appends @var{buf_len} bytes starting at
  2467. @var{buf} to the argz vector @code{*@var{argz}}, reallocating
  2468. @code{*@var{argz}} to accommodate it, and adding @var{buf_len} to
  2469. @code{*@var{argz_len}}.
  2470. @end deftypefun
  2471. @deftypefun {void} argz_delete (char **@var{argz}, size_t *@var{argz_len}, char *@var{entry})
  2472. @standards{GNU, argz.h}
  2473. @safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
  2474. @c Calls free if no argument is left.
  2475. If @var{entry} points to the beginning of one of the elements in the
  2476. argz vector @code{*@var{argz}}, the @code{argz_delete} function will
  2477. remove this entry and reallocate @code{*@var{argz}}, modifying
  2478. @code{*@var{argz}} and @code{*@var{argz_len}} accordingly. Note that as
  2479. destructive argz functions usually reallocate their argz argument,
  2480. pointers into argz vectors such as @var{entry} will then become invalid.
  2481. @end deftypefun
  2482. @deftypefun {error_t} argz_insert (char **@var{argz}, size_t *@var{argz_len}, char *@var{before}, const char *@var{entry})
  2483. @standards{GNU, argz.h}
  2484. @safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
  2485. @c Calls argz_add or realloc and memmove.
  2486. The @code{argz_insert} function inserts the string @var{entry} into the
  2487. argz vector @code{*@var{argz}} at a point just before the existing
  2488. element pointed to by @var{before}, reallocating @code{*@var{argz}} and
  2489. updating @code{*@var{argz}} and @code{*@var{argz_len}}. If @var{before}
  2490. is @code{0}, @var{entry} is added to the end instead (as if by
  2491. @code{argz_add}). Since the first element is in fact the same as
  2492. @code{*@var{argz}}, passing in @code{*@var{argz}} as the value of
  2493. @var{before} will result in @var{entry} being inserted at the beginning.
  2494. @end deftypefun
  2495. @deftypefun {char *} argz_next (const char *@var{argz}, size_t @var{argz_len}, const char *@var{entry})
  2496. @standards{GNU, argz.h}
  2497. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  2498. The @code{argz_next} function provides a convenient way of iterating
  2499. over the elements in the argz vector @var{argz}. It returns a pointer
  2500. to the next element in @var{argz} after the element @var{entry}, or
  2501. @code{0} if there are no elements following @var{entry}. If @var{entry}
  2502. is @code{0}, the first element of @var{argz} is returned.
  2503. This behavior suggests two styles of iteration:
  2504. @smallexample
  2505. char *entry = 0;
  2506. while ((entry = argz_next (@var{argz}, @var{argz_len}, entry)))
  2507. @var{action};
  2508. @end smallexample
  2509. (the double parentheses are necessary to make some C compilers shut up
  2510. about what they consider a questionable @code{while}-test) and:
  2511. @smallexample
  2512. char *entry;
  2513. for (entry = @var{argz};
  2514. entry;
  2515. entry = argz_next (@var{argz}, @var{argz_len}, entry))
  2516. @var{action};
  2517. @end smallexample
  2518. Note that the latter depends on @var{argz} having a value of @code{0} if
  2519. it is empty (rather than a pointer to an empty block of memory); this
  2520. invariant is maintained for argz vectors created by the functions here.
  2521. @end deftypefun
  2522. @deftypefun error_t argz_replace (@w{char **@var{argz}, size_t *@var{argz_len}}, @w{const char *@var{str}, const char *@var{with}}, @w{unsigned *@var{replace_count}})
  2523. @standards{GNU, argz.h}
  2524. @safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
  2525. Replace any occurrences of the string @var{str} in @var{argz} with
  2526. @var{with}, reallocating @var{argz} as necessary. If
  2527. @var{replace_count} is non-zero, @code{*@var{replace_count}} will be
  2528. incremented by the number of replacements performed.
  2529. @end deftypefun
  2530. @node Envz Functions, , Argz Functions, Argz and Envz Vectors
  2531. @subsection Envz Functions
  2532. Envz vectors are just argz vectors with additional constraints on the form
  2533. of each element; as such, argz functions can also be used on them, where it
  2534. makes sense.
  2535. Each element in an envz vector is a name-value pair, separated by a @code{'='}
  2536. byte; if multiple @code{'='} bytes are present in an element, those
  2537. after the first are considered part of the value, and treated like all other
  2538. non-@code{'\0'} bytes.
  2539. If @emph{no} @code{'='} bytes are present in an element, that element is
  2540. considered the name of a ``null'' entry, as distinct from an entry with an
  2541. empty value: @code{envz_get} will return @code{0} if given the name of null
  2542. entry, whereas an entry with an empty value would result in a value of
  2543. @code{""}; @code{envz_entry} will still find such entries, however. Null
  2544. entries can be removed with the @code{envz_strip} function.
  2545. As with argz functions, envz functions that may allocate memory (and thus
  2546. fail) have a return type of @code{error_t}, and return either @code{0} or
  2547. @code{ENOMEM}.
  2548. @pindex envz.h
  2549. These functions are declared in the standard include file @file{envz.h}.
  2550. @deftypefun {char *} envz_entry (const char *@var{envz}, size_t @var{envz_len}, const char *@var{name})
  2551. @standards{GNU, envz.h}
  2552. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  2553. The @code{envz_entry} function finds the entry in @var{envz} with the name
  2554. @var{name}, and returns a pointer to the whole entry---that is, the argz
  2555. element which begins with @var{name} followed by a @code{'='} byte. If
  2556. there is no entry with that name, @code{0} is returned.
  2557. @end deftypefun
  2558. @deftypefun {char *} envz_get (const char *@var{envz}, size_t @var{envz_len}, const char *@var{name})
  2559. @standards{GNU, envz.h}
  2560. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  2561. The @code{envz_get} function finds the entry in @var{envz} with the name
  2562. @var{name} (like @code{envz_entry}), and returns a pointer to the value
  2563. portion of that entry (following the @code{'='}). If there is no entry with
  2564. that name (or only a null entry), @code{0} is returned.
  2565. @end deftypefun
  2566. @deftypefun {error_t} envz_add (char **@var{envz}, size_t *@var{envz_len}, const char *@var{name}, const char *@var{value})
  2567. @standards{GNU, envz.h}
  2568. @safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
  2569. @c Calls envz_remove, which calls enz_entry and argz_delete, and then
  2570. @c argz_add or equivalent code that reallocs and appends name=value.
  2571. The @code{envz_add} function adds an entry to @code{*@var{envz}}
  2572. (updating @code{*@var{envz}} and @code{*@var{envz_len}}) with the name
  2573. @var{name}, and value @var{value}. If an entry with the same name
  2574. already exists in @var{envz}, it is removed first. If @var{value} is
  2575. @code{0}, then the new entry will be the special null type of entry
  2576. (mentioned above).
  2577. @end deftypefun
  2578. @deftypefun {error_t} envz_merge (char **@var{envz}, size_t *@var{envz_len}, const char *@var{envz2}, size_t @var{envz2_len}, int @var{override})
  2579. @standards{GNU, envz.h}
  2580. @safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
  2581. The @code{envz_merge} function adds each entry in @var{envz2} to @var{envz},
  2582. as if with @code{envz_add}, updating @code{*@var{envz}} and
  2583. @code{*@var{envz_len}}. If @var{override} is true, then values in @var{envz2}
  2584. will supersede those with the same name in @var{envz}, otherwise not.
  2585. Null entries are treated just like other entries in this respect, so a null
  2586. entry in @var{envz} can prevent an entry of the same name in @var{envz2} from
  2587. being added to @var{envz}, if @var{override} is false.
  2588. @end deftypefun
  2589. @deftypefun {void} envz_strip (char **@var{envz}, size_t *@var{envz_len})
  2590. @standards{GNU, envz.h}
  2591. @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
  2592. The @code{envz_strip} function removes any null entries from @var{envz},
  2593. updating @code{*@var{envz}} and @code{*@var{envz_len}}.
  2594. @end deftypefun
  2595. @deftypefun {void} envz_remove (char **@var{envz}, size_t *@var{envz_len}, const char *@var{name})
  2596. @standards{GNU, envz.h}
  2597. @safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
  2598. The @code{envz_remove} function removes an entry named @var{name} from
  2599. @var{envz}, updating @code{*@var{envz}} and @code{*@var{envz_len}}.
  2600. @end deftypefun
  2601. @c FIXME this are undocumented:
  2602. @c strcasecmp_l @safety{@mtsafe{}@assafe{}@acsafe{}} see strcasecmp