/usr/include/vxl/vcl/vcl_cstring.h is in libvxl1-dev 1.14.0-14.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | #ifndef vcl_cstring_h_
#define vcl_cstring_h_
#include "vcl_compiler.h"
#if !VCL_CXX_HAS_HEADER_CSTRING
# include <string.h>
# define vcl_generic_cstring_STD /* */
# include "generic/vcl_cstring.h"
#elif defined(VCL_VC60)
# include <cstring>
# define vcl_generic_cstring_STD /* */
# include "generic/vcl_cstring.h"
#elif defined(VCL_METRO_WERKS)
# include <cstring>
# define vcl_generic_cstring_STD /* */
# include "generic/vcl_cstring.h"
#else
# include "iso/vcl_cstring.h"
#endif
// Sometimes they are not functions, but macros (this is non-standard).
// memchr
// memcmp
// memcpy
// memmove
// memset
// strcat
// strchr
// strcmp
// strcoll
// strcpy
// strcspn
// strerror
// strlen
// strncat
// strncmp
// strncpy
// strpbrk
// strrchr
// strspn
// strstr
// strtok
// strxfrm
#ifdef memchr
# undef vcl_memchr
# define vcl_memchr memchr
#endif
#ifdef memcmp
# undef vcl_memcmp
# define vcl_memcmp memcmp
#endif
#ifdef memcpy
# undef vcl_memcpy
# define vcl_memcpy memcpy
#endif
#ifdef memmove
# undef vcl_memmove
# define vcl_memmove memmove
#endif
#ifdef memset
# undef vcl_memset
# define vcl_memset memset
#endif
#ifdef strcat
# undef vcl_strcat
# define vcl_strcat strcat
#endif
#ifdef strchr
# undef vcl_strchr
# define vcl_strchr strchr
#endif
#ifdef strcmp
# undef vcl_strcmp
# define vcl_strcmp strcmp
#endif
#ifdef strcoll
# undef vcl_strcoll
# define vcl_strcoll strcoll
#endif
#ifdef strcpy
# undef vcl_strcpy
# define vcl_strcpy strcpy
#endif
#ifdef strcspn
# undef vcl_strcspn
# define vcl_strcspn strcspn
#endif
#ifdef strerror
# undef vcl_strerror
# define vcl_strerror strerror
#endif
#ifdef strlen
# undef vcl_strlen
# define vcl_strlen strlen
#endif
#ifdef strncat
# undef vcl_strncat
# define vcl_strncat strncat
#endif
#ifdef strncmp
# undef vcl_strncmp
# define vcl_strncmp strncmp
#endif
#ifdef strncpy
# undef vcl_strncpy
# define vcl_strncpy strncpy
#endif
#ifdef strpbrk
# undef vcl_strpbrk
# define vcl_strpbrk strpbrk
#endif
#ifdef strrchr
# undef vcl_strrchr
# define vcl_strrchr strrchr
#endif
#ifdef strspn
# undef vcl_strspn
# define vcl_strspn strspn
#endif
#ifdef strstr
# undef vcl_strstr
# define vcl_strstr strstr
#endif
#ifdef strtok
# undef vcl_strtok
# define vcl_strtok strtok
#endif
#ifdef strxfrm
# undef vcl_strxfrm
# define vcl_strxfrm strxfrm
#endif
#endif // vcl_cstring_h_
|