• Home
  • Raw
  • Download

Lines Matching refs:HChar

40 extern Bool  VG_(isspace) ( HChar c );
41 extern Bool VG_(isdigit) ( HChar c );
42 extern HChar VG_(tolower) ( HChar c );
61 extern Long VG_(strtoll10) ( const HChar* str, HChar** endptr );
62 extern Long VG_(strtoll16) ( const HChar* str, HChar** endptr );
63 extern ULong VG_(strtoull10) ( const HChar* str, HChar** endptr );
64 extern ULong VG_(strtoull16) ( const HChar* str, HChar** endptr );
70 extern double VG_(strtod) ( const HChar* str, HChar** endptr );
82 extern SizeT VG_(strlen) ( const HChar* str );
83 extern HChar* VG_(strcat) ( HChar* dest, const HChar* src );
84 extern HChar* VG_(strncat) ( HChar* dest, const HChar* src, SizeT n );
85 extern HChar* VG_(strpbrk) ( const HChar* s, const HChar* accpt );
86 extern HChar* VG_(strcpy) ( HChar* dest, const HChar* src );
87 extern HChar* VG_(strncpy) ( HChar* dest, const HChar* src, SizeT ndest );
88 extern Int VG_(strcmp) ( const HChar* s1, const HChar* s2 );
89 extern Int VG_(strcasecmp) ( const HChar* s1, const HChar* s2 );
90 extern Int VG_(strncmp) ( const HChar* s1, const HChar* s2, SizeT nmax );
91 extern Int VG_(strncasecmp) ( const HChar* s1, const HChar* s2, SizeT nmax );
92 extern HChar* VG_(strstr) ( const HChar* haystack, const HChar* needle );
93 extern HChar* VG_(strcasestr) ( const HChar* haystack, const HChar* needle );
94 extern HChar* VG_(strchr) ( const HChar* s, HChar c );
95 extern HChar* VG_(strrchr) ( const HChar* s, HChar c );
96 extern SizeT VG_(strspn) ( const HChar* s, const HChar* accpt );
97 extern SizeT VG_(strcspn) ( const HChar* s, const HChar* reject );
100 extern HChar* VG_(strtok_r) (HChar* s, const HChar* delim, HChar** saveptr);
101 extern HChar* VG_(strtok) (HChar* s, const HChar* delim);
107 extern Bool VG_(parse_Addr) ( const HChar** ppc, Addr* result );
124 extern Bool VG_(parse_enum_set) ( const HChar *tokens,
126 const HChar *input,