ns-3 Direct Code Execution
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
dce-string.h
Go to the documentation of this file.
1 #ifndef SIMU_STRING_H
2 #define SIMU_STRING_H
3 
4 #include <string.h>
5 
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9 
10 char * dce_strdup (const char *s);
11 char * dce_strndup (const char *s, size_t n);
12 char * dce___strcpy_chk (char *__restrict __dest,
13  const char *__restrict __src,
14  size_t __destlen);
15 char * dce_strpbrk (const char *s, const char *accept);
16 char * dce_strstr (const char *h, const char *n);
17 
18 #ifdef __cplusplus
19 }
20 #endif
21 
22 #endif /* SIMU_STRING_H */