Namespaces | Defines | Functions

OS_NS_string.h File Reference

#include "ace/config-lite.h"
#include "ace/Basic_Types.h"

Namespaces

namespace  ACE_OS
 

This namespace defines an OS independent programming API that shields developers from nonportable aspects of writing efficient system programs on Win32, POSIX and other versions of UNIX, and various real-time operating systems.


Defines

#define ACE_EXPORT_MACRO   ACE_Export

Functions

char * ACE_OS::strtok_r (char *s, const char *tokens, char **lasts)
 Finds the next token in a string (safe char version).
ACE_Export char * ACE_OS::strtok_r_emulation (char *s, const char *tokens, char **lasts)
 Emulated strtok_r.
Functions from <cstring>

Included are the functions defined in <cstring> and their <cwchar> equivalents.

Todo:
To be complete, we should add strcoll, and strxfrm.
const void * ACE_OS::memchr (const void *s, int c, size_t len)
 Finds characters in a buffer (const void version).
void * ACE_OS::memchr (void *s, int c, size_t len)
 Finds characters in a buffer (void version).
int ACE_OS::memcmp (const void *t, const void *s, size_t len)
 Compares two buffers.
void * ACE_OS::memcpy (void *t, const void *s, size_t len)
 Copies one buffer to another.
void * ACE_OS::memmove (void *t, const void *s, size_t len)
 Moves one buffer to another.
void * ACE_OS::memset (void *s, int c, size_t len)
 Fills a buffer with a character value.
char * ACE_OS::strcat (char *s, const char *t)
 Appends a string to another string (char version).
const char * ACE_OS::strchr (const char *s, int c)
char * ACE_OS::strchr (char *s, int c)
 Finds the first occurance of a character in a string (char version).
int ACE_OS::strcmp (const char *s, const char *t)
 Compares two strings (char version).
int ACE_OS::strcmp (const ACE_WCHAR_T *s, const ACE_WCHAR_T *t)
 Compares two strings (wchar_t version).
char * ACE_OS::strcpy (char *s, const char *t)
 Copies a string (char version).
size_t ACE_OS::strcspn (const char *s, const char *reject)
char * ACE_OS::strdup (const char *s)
 Returns a malloced duplicated string (char version).
ACE_Export char * ACE_OS::strecpy (char *des, const char *src)
ACE_Export char * ACE_OS::strerror (int errnum)
ACE_Export char * ACE_OS::strsignal (int signum)
size_t ACE_OS::strlen (const char *s)
 Finds the length of a string (char version).
size_t ACE_OS::strlen (const ACE_WCHAR_T *s)
 Finds the length of a string (ACE_WCHAR_T version).
char * ACE_OS::strncat (char *s, const char *t, size_t len)
 Appends part of a string to another string (char version).
ACE_WCHAR_T * ACE_OS::strncat (ACE_WCHAR_T *s, const ACE_WCHAR_T *t, size_t len)
 Appends part of a string to another string (wchar_t version).
ACE_Export const char * ACE_OS::strnchr (const char *s, int c, size_t len)
ACE_Export const ACE_WCHAR_T * ACE_OS::strnchr (const ACE_WCHAR_T *s, ACE_WCHAR_T c, size_t len)
char * ACE_OS::strnchr (char *s, int c, size_t len)
 Finds the first occurance of a character in an array (char version).
ACE_WCHAR_T * ACE_OS::strnchr (ACE_WCHAR_T *s, ACE_WCHAR_T c, size_t len)
 Finds the first occurance of a character in an array (ACE_WCHAR_T version).
int ACE_OS::strncmp (const char *s, const char *t, size_t len)
 Compares two arrays (char version).
int ACE_OS::strncmp (const ACE_WCHAR_T *s, const ACE_WCHAR_T *t, size_t len)
 Compares two arrays (wchar_t version).
char * ACE_OS::strncpy (char *s, const char *t, size_t len)
 Copies an array (char version).
ACE_WCHAR_T * ACE_OS::strncpy (ACE_WCHAR_T *s, const ACE_WCHAR_T *t, size_t len)
 Copies an array (ACE_WCHAR_T version).
size_t ACE_OS::strnlen (const char *s, size_t maxlen)
 Finds the length of a limited-length string (char version).
size_t ACE_OS::strnlen (const ACE_WCHAR_T *s, size_t maxlen)
 Finds the length of a limited-length string (ACE_WCHAR_T version).
ACE_Export const char * ACE_OS::strnstr (const char *s, const char *t, size_t len)
ACE_Export const ACE_WCHAR_T * ACE_OS::strnstr (const ACE_WCHAR_T *s, const ACE_WCHAR_T *t, size_t len)
char * ACE_OS::strnstr (char *s, const char *t, size_t len)
 Finds the first occurance of a substring in an array (char version).
ACE_WCHAR_T * ACE_OS::strnstr (ACE_WCHAR_T *s, const ACE_WCHAR_T *t, size_t len)
 Finds the first occurance of a substring in an array (wchar_t version).
const char * ACE_OS::strpbrk (const char *s1, const char *s2)
 Searches for characters in a string (const char version).
char * ACE_OS::strpbrk (char *s1, const char *s2)
 Searches for characters in a string (char version).
const char * ACE_OS::strrchr (const char *s, int c)
char * ACE_OS::strrchr (char *s, int c)
 Finds the last occurance of a character in a string (char version).
ACE_Export char * ACE_OS::strsncpy (char *dst, const char *src, size_t maxlen)
 This is a "safe" c string copy function (char version).
ACE_Export ACE_WCHAR_T * ACE_OS::strsncpy (ACE_WCHAR_T *dst, const ACE_WCHAR_T *src, size_t maxlen)
 This is a "safe" c string copy function (wchar_t version).
size_t ACE_OS::strspn (const char *s1, const char *s2)
const char * ACE_OS::strstr (const char *s, const char *t)
char * ACE_OS::strstr (char *s, const char *t)
 Finds the first occurance of a substring in a string (char version).
char * ACE_OS::strtok (char *s, const char *tokens)
 Finds the next token in a string (char version).

Detailed Description

Id:
OS_NS_string.h 87481 2009-11-11 11:46:10Z olli
Author:
Douglas C. Schmidt <schmidt@cs.wustl.edu>
Jesper S. M|ller<stophph@diku.dk>
and a cast of thousands...

Originally in OS.h.


Define Documentation

#define ACE_EXPORT_MACRO   ACE_Export
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines