3 //=============================================================================
7 * @author Douglas C. Schmidt <d.schmidt@vanderbilt.edu>
8 * @author Jesper S. M|ller<stophph@diku.dk>
9 * @author and a cast of thousands...
11 //=============================================================================
13 #ifndef ACE_OS_NS_STRING_H
14 #define ACE_OS_NS_STRING_H
16 # include /**/ "ace/pre.h"
18 # include "ace/config-lite.h"
20 # if !defined (ACE_LACKS_PRAGMA_ONCE)
22 # endif /* ACE_LACKS_PRAGMA_ONCE */
24 #include "ace/Basic_Types.h" // to get ACE_WCHAR_T,
25 // should be in os_stddef.h or not used like this.
26 #include /**/ "ace/ACE_export.h"
28 #if defined (ACE_EXPORT_MACRO)
29 # undef ACE_EXPORT_MACRO
31 #define ACE_EXPORT_MACRO ACE_Export
33 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
36 /** @name Functions from <cstring>
38 * Included are the functions defined in <cstring> and their <cwchar>
41 * @todo To be complete, we should add strcoll, and strxfrm.
44 /// Finds characters in a buffer (const void version).
45 ACE_NAMESPACE_INLINE_FUNCTION
46 const void *memchr (const void *s
, int c
, size_t len
);
48 /// Finds characters in a buffer (void version).
49 ACE_NAMESPACE_INLINE_FUNCTION
50 void *memchr (void *s
, int c
, size_t len
);
52 /// Compares two buffers.
53 ACE_NAMESPACE_INLINE_FUNCTION
54 int memcmp (const void *t
, const void *s
, size_t len
);
56 /// Copies one buffer to another.
57 ACE_NAMESPACE_INLINE_FUNCTION
58 void *memcpy (void *t
, const void *s
, size_t len
);
60 /// Moves one buffer to another.
61 ACE_NAMESPACE_INLINE_FUNCTION
62 void *memmove (void *t
, const void *s
, size_t len
);
64 /// Fills a buffer with a character value.
65 ACE_NAMESPACE_INLINE_FUNCTION
66 void *memset (void *s
, int c
, size_t len
);
68 /// Appends a string to another string (char version).
69 ACE_NAMESPACE_INLINE_FUNCTION
70 char *strcat (char *s
, const char *t
);
72 #if defined (ACE_HAS_WCHAR)
73 /// Appends a string to another string (wchar_t version).
74 ACE_NAMESPACE_INLINE_FUNCTION
75 wchar_t *strcat (wchar_t *s
, const wchar_t *t
);
76 #endif /* ACE_HAS_WCHAR */
78 /// Finds the first occurrence of a character in a string (const char
80 ACE_NAMESPACE_INLINE_FUNCTION
81 const char *strchr (const char *s
, int c
);
83 #if defined (ACE_HAS_WCHAR)
84 /// Finds the first occurrence of a character in a string (const wchar_t
86 ACE_NAMESPACE_INLINE_FUNCTION
87 const wchar_t *strchr (const wchar_t *s
, wchar_t c
);
88 #endif /* ACE_HAS_WCHAR */
90 /// Finds the first occurrence of a character in a string (char version).
91 ACE_NAMESPACE_INLINE_FUNCTION
92 char *strchr (char *s
, int c
);
94 #if defined (ACE_HAS_WCHAR)
95 /// Finds the first occurrence of a character in a string (wchar_t version).
96 ACE_NAMESPACE_INLINE_FUNCTION
97 wchar_t *strchr (wchar_t *s
, wchar_t c
);
98 #endif /* ACE_HAS_WCHAR */
100 /// Compares two strings (char version).
101 ACE_NAMESPACE_INLINE_FUNCTION
102 int strcmp (const char *s
, const char *t
);
104 /// Compares two strings (wchar_t version).
105 ACE_NAMESPACE_INLINE_FUNCTION
106 int strcmp (const ACE_WCHAR_T
*s
, const ACE_WCHAR_T
*t
);
108 /// Copies a string (char version).
109 ACE_NAMESPACE_INLINE_FUNCTION
110 char *strcpy (char *s
, const char *t
);
112 #if defined (ACE_HAS_WCHAR)
113 /// Copies a string (wchar_t version).
114 ACE_NAMESPACE_INLINE_FUNCTION
115 wchar_t *strcpy (wchar_t *s
, const wchar_t *t
);
116 #endif /* ACE_HAS_WCHAR */
118 /// Searches for the first substring without any of the specified
119 /// characters and returns the size of the substring (char version).
120 ACE_NAMESPACE_INLINE_FUNCTION
121 size_t strcspn (const char *s
, const char *reject
);
123 #if defined (ACE_HAS_WCHAR)
124 /// Searches for the first substring without any of the specified
125 /// characters and returns the size of the substring (wchar_t version).
126 ACE_NAMESPACE_INLINE_FUNCTION
127 size_t strcspn (const wchar_t *s
, const wchar_t *reject
);
128 #endif /* ACE_HAS_WCHAR */
130 /// Returns a malloced duplicated string (char version).
131 ACE_NAMESPACE_INLINE_FUNCTION
132 char *strdup (const char *s
);
134 #if (defined (ACE_LACKS_STRDUP) && !defined(ACE_STRDUP_EQUIVALENT)) \
135 || defined (ACE_HAS_STRDUP_EMULATION)
137 char *strdup_emulation (const char *s
);
140 #if defined (ACE_HAS_WCHAR)
141 /// Returns a malloced duplicated string (wchar_t version).
142 ACE_NAMESPACE_INLINE_FUNCTION
143 wchar_t *strdup (const wchar_t *s
);
145 #if (defined (ACE_LACKS_WCSDUP) && !defined(ACE_WCSDUP_EQUIVALENT)) \
146 || defined (ACE_HAS_WCSDUP_EMULATION)
148 wchar_t *strdup_emulation (const wchar_t *s
);
150 #endif /* ACE_HAS_WCHAR */
152 /// Copies a string, but returns a pointer to the end of the
153 /// copied region (char version).
155 char *strecpy (char *des
, const char *src
);
157 #if defined (ACE_HAS_WCHAR)
158 /// Copies a string, but returns a pointer to the end of the
159 /// copied region (wchar_t version).
161 wchar_t *strecpy (wchar_t *s
, const wchar_t *t
);
162 #endif /* ACE_HAS_WCHAR */
164 /// Returns a system error message. If the supplied errnum is out of range,
165 /// a string of the form "Unknown error %d" is used to format the string
166 /// whose pointer is returned and errno is set to EINVAL.
168 char *strerror (int errnum
);
170 #if defined (ACE_LACKS_STRERROR)
171 /// Emulated strerror - Returns a system error message.
173 char *strerror_emulation (int errnum
);
174 #endif /* ACE_LACKS_STRERROR */
177 /// Returns a string describing the signal number passed in the
178 /// argument @a signum. If the supplied signal number is out of range,
179 /// a string of the form "Unknown signal %d" is used to format the string
180 /// whose pointer is returned.
182 char *strsignal (int signum
);
185 char *strerror_r (int errnum
, char *buf
, size_t buflen
);
187 /// Finds the length of a string (char version).
188 ACE_NAMESPACE_INLINE_FUNCTION
189 size_t strlen (const char *s
);
191 /// Finds the length of a string (ACE_WCHAR_T version).
192 ACE_NAMESPACE_INLINE_FUNCTION
193 size_t strlen (const ACE_WCHAR_T
*s
);
195 /// Appends part of a string to another string (char version).
196 ACE_NAMESPACE_INLINE_FUNCTION
197 char *strncat (char *s
, const char *t
, size_t len
);
199 /// Appends part of a string to another string (wchar_t version).
200 ACE_NAMESPACE_INLINE_FUNCTION
201 ACE_WCHAR_T
*strncat (ACE_WCHAR_T
*s
, const ACE_WCHAR_T
*t
, size_t len
);
203 /// Finds the first occurrence of a character in an array (const char
206 const char *strnchr (const char *s
, int c
, size_t len
);
208 /// Finds the first occurrence of a character in an array (const ACE_WCHAR_T
211 const ACE_WCHAR_T
*strnchr (const ACE_WCHAR_T
*s
, ACE_WCHAR_T c
, size_t len
);
213 /// Finds the first occurrence of a character in an array (char version).
214 ACE_NAMESPACE_INLINE_FUNCTION
215 char *strnchr (char *s
, int c
, size_t len
);
217 /// Finds the first occurrence of a character in an array (ACE_WCHAR_T version).
218 ACE_NAMESPACE_INLINE_FUNCTION
219 ACE_WCHAR_T
*strnchr (ACE_WCHAR_T
*s
, ACE_WCHAR_T c
, size_t len
);
221 /// Compares two arrays (char version).
222 ACE_NAMESPACE_INLINE_FUNCTION
223 int strncmp (const char *s
, const char *t
, size_t len
);
225 /// Compares two arrays (wchar_t version).
226 ACE_NAMESPACE_INLINE_FUNCTION
227 int strncmp (const ACE_WCHAR_T
*s
, const ACE_WCHAR_T
*t
, size_t len
);
229 /// Copies an array (char version)
230 ACE_NAMESPACE_INLINE_FUNCTION
231 char *strncpy (char *s
, const char *t
, size_t len
);
233 /// Copies an array (ACE_WCHAR_T version)
234 ACE_NAMESPACE_INLINE_FUNCTION
235 ACE_WCHAR_T
*strncpy (ACE_WCHAR_T
*s
, const ACE_WCHAR_T
*t
, size_t len
);
237 /// Finds the length of a limited-length string (char version).
239 * @param s The character string to find the length of.
240 * @param maxlen The maximum number of characters that will be
241 * scanned for the terminating nul character.
243 * @return The length of @arg s, if the terminating nul character
244 * is located, else @arg maxlen.
246 ACE_NAMESPACE_INLINE_FUNCTION
247 size_t strnlen (const char *s
, size_t maxlen
);
249 /// Finds the length of a limited-length string (ACE_WCHAR_T version).
251 * @param s The character string to find the length of.
252 * @param maxlen The maximum number of characters that will be
253 * scanned for the terminating nul character.
255 * @return The length of @arg s, if the terminating nul character
256 * is located, else @arg maxlen.
258 ACE_NAMESPACE_INLINE_FUNCTION
259 size_t strnlen (const ACE_WCHAR_T
*s
, size_t maxlen
);
261 /// Finds the first occurrence of a substring in an array (const char
264 const char *strnstr (const char *s
, const char *t
, size_t len
);
266 /// Finds the first occurrence of a substring in an array (const wchar_t
269 const ACE_WCHAR_T
*strnstr (const ACE_WCHAR_T
*s
,
270 const ACE_WCHAR_T
*t
,
273 /// Finds the first occurrence of a substring in an array (char version).
274 ACE_NAMESPACE_INLINE_FUNCTION
275 char *strnstr (char *s
, const char *t
, size_t len
);
277 /// Finds the first occurrence of a substring in an array (wchar_t version).
278 ACE_NAMESPACE_INLINE_FUNCTION
279 ACE_WCHAR_T
*strnstr (ACE_WCHAR_T
*s
, const ACE_WCHAR_T
*t
, size_t len
);
281 /// Searches for characters in a string (const char version).
282 ACE_NAMESPACE_INLINE_FUNCTION
283 const char *strpbrk (const char *s1
, const char *s2
);
285 #if defined (ACE_HAS_WCHAR)
286 /// Searches for characters in a string (const wchar_t version).
287 ACE_NAMESPACE_INLINE_FUNCTION
288 const wchar_t *strpbrk (const wchar_t *s1
, const wchar_t *s2
);
289 #endif /* ACE_HAS_WCHAR */
291 /// Searches for characters in a string (char version).
292 ACE_NAMESPACE_INLINE_FUNCTION
293 char *strpbrk (char *s1
, const char *s2
);
295 #if defined (ACE_HAS_WCHAR)
296 /// Searches for characters in a string (wchar_t version).
297 ACE_NAMESPACE_INLINE_FUNCTION
298 wchar_t *strpbrk (wchar_t *s1
, const wchar_t *s2
);
299 #endif /* ACE_HAS_WCHAR */
301 /// Finds the last occurrence of a character in a string (const char
303 ACE_NAMESPACE_INLINE_FUNCTION
304 const char *strrchr (const char *s
, int c
);
306 #if defined (ACE_HAS_WCHAR)
307 /// Finds the last occurrence of a character in a string (const wchar_t
309 ACE_NAMESPACE_INLINE_FUNCTION
310 const wchar_t *strrchr (const wchar_t *s
, wchar_t c
);
311 #endif /* ACE_HAS_WCHAR */
313 /// Finds the last occurrence of a character in a string (char version).
314 ACE_NAMESPACE_INLINE_FUNCTION
315 char *strrchr (char *s
, int c
);
317 #if defined (ACE_HAS_WCHAR)
318 /// Finds the last occurrence of a character in a string (wchar_t version).
319 ACE_NAMESPACE_INLINE_FUNCTION
320 wchar_t *strrchr (wchar_t *s
, wchar_t c
);
321 #endif /* ACE_HAS_WCHAR */
323 /// This is a "safe" c string copy function (char version).
325 * Unlike strncpy() this function will always add a terminating '\0'
326 * char if maxlen > 0. So the user doesn't has to provide an extra
327 * '\0' if the user wants a '\0' terminated dst. The function
328 * doesn't check for a 0 @a dst, because this will give problems
329 * anyway. When @a src is 0 an empty string is made. We do not
330 * "touch" * @a dst if maxlen is 0. Returns @a dst. Care should be
331 * taken when replacing strncpy() calls, because in some cases a
332 * strncpy() user is using the "not '\0' terminating" feature from
333 * strncpy(). This happens most when the call to strncpy() was
334 * optimized by using a maxlen which is 1 smaller than the size
335 * because there's always written a '\0' inside this last position.
336 * Very seldom it's possible that the '\0' padding feature from
337 * strncpy() is needed.
340 char *strsncpy (char *dst
,
344 /// This is a "safe" c string copy function (wchar_t version).
346 * Unlike strncpy() this function will always add a terminating '\0'
347 * char if maxlen > 0. So the user doesn't has to provide an extra
348 * '\0' if the user wants a '\0' terminated dst. The function
349 * doesn't check for a 0 @a dst, because this will give problems
350 * anyway. When @a src is 0 an empty string is made. We do not
351 * "touch" * @a dst if maxlen is 0. Returns @a dst. Care should be
352 * taken when replacing strncpy() calls, because in some cases a
353 * strncpy() user is using the "not '\0' terminating" feature from
354 * strncpy(). This happens most when the call to strncpy() was
355 * optimized by using a maxlen which is 1 smaller than the size
356 * because there's always written a '\0' inside this last position.
357 * Very seldom it's possible that the '\0' padding feature from
358 * strncpy() is needed.
361 ACE_WCHAR_T
*strsncpy (ACE_WCHAR_T
*dst
,
362 const ACE_WCHAR_T
*src
,
365 /// Searches for the first substring containing only the specified
366 /// characters and returns the size of the substring (char version).
367 ACE_NAMESPACE_INLINE_FUNCTION
368 size_t strspn (const char *s1
, const char *s2
);
370 #if defined (ACE_HAS_WCHAR)
371 /// Searches for the first substring containing only the specified
372 /// characters and returns the size of the substring (wchar_t version).
373 ACE_NAMESPACE_INLINE_FUNCTION
374 size_t strspn (const wchar_t *s1
, const wchar_t *s2
);
375 #endif /* ACE_HAS_WCHAR */
377 /// Finds the first occurrence of a substring in a string (const char
379 ACE_NAMESPACE_INLINE_FUNCTION
380 const char *strstr (const char *s
, const char *t
);
382 #if defined (ACE_HAS_WCHAR)
383 /// Finds the first occurrence of a substring in a string (const wchar_t
385 ACE_NAMESPACE_INLINE_FUNCTION
386 const wchar_t *strstr (const wchar_t *s
, const wchar_t *t
);
387 #endif /* ACE_HAS_WCHAR */
389 /// Finds the first occurrence of a substring in a string (char version).
390 ACE_NAMESPACE_INLINE_FUNCTION
391 char *strstr (char *s
, const char *t
);
393 #if defined (ACE_HAS_WCHAR)
394 /// Finds the first occurrence of a substring in a string (wchar_t version).
395 ACE_NAMESPACE_INLINE_FUNCTION
396 wchar_t *strstr (wchar_t *s
, const wchar_t *t
);
397 #endif /* ACE_HAS_WCHAR */
399 /// Finds the next token in a string (char version).
400 ACE_NAMESPACE_INLINE_FUNCTION
401 char *strtok (char *s
, const char *tokens
);
403 #if defined (ACE_HAS_WCHAR) && !defined (ACE_LACKS_WCSTOK)
404 /// Finds the next token in a string (wchar_t version).
405 ACE_NAMESPACE_INLINE_FUNCTION
406 wchar_t *strtok (wchar_t *s
, const wchar_t *tokens
);
407 #endif /* ACE_HAS_WCHAR && !ACE_LACKS_WCSTOK */
410 /// Finds the next token in a string (safe char version).
411 ACE_NAMESPACE_INLINE_FUNCTION
412 char *strtok_r (char *s
, const char *tokens
, char **lasts
);
414 #if defined (ACE_HAS_WCHAR)
415 /// Finds the next token in a string (wchar_t version).
416 ACE_NAMESPACE_INLINE_FUNCTION
417 wchar_t *strtok_r (ACE_WCHAR_T
*s
, const ACE_WCHAR_T
*tokens
, ACE_WCHAR_T
**lasts
);
418 #endif // ACE_HAS_WCHAR
420 #if defined (ACE_LACKS_STRTOK_R)
421 /// Emulated strtok_r.
423 char *strtok_r_emulation (char *s
, const char *tokens
, char **lasts
);
424 #endif /* ACE_LACKS_STRTOK_R */
426 # if defined (ACE_HAS_WCHAR) && defined(ACE_LACKS_WCSTOK)
427 /// Emulated strtok_r (wchar_t version).
429 wchar_t *strtok_r_emulation (ACE_WCHAR_T
*s
, const ACE_WCHAR_T
*tokens
, ACE_WCHAR_T
**lasts
);
430 # endif // ACE_HAS_WCHAR && ACE_LACKS_WCSTOK
432 } /* namespace ACE_OS */
434 ACE_END_VERSIONED_NAMESPACE_DECL
436 # if defined (ACE_HAS_INLINED_OSCALLS)
437 # if defined (ACE_INLINE)
439 # endif /* ACE_INLINE */
440 # define ACE_INLINE inline
441 # include "ace/OS_NS_string.inl"
442 # endif /* ACE_HAS_INLINED_OSCALLS */
444 # include /**/ "ace/post.h"
445 #endif /* ACE_OS_NS_STRING_H */