Searched defs:strchr (Results 1 - 11 of 11) sorted by relevance

/vbox/src/VBox/Runtime/common/string/
H A Dstrchr_alias.c3 * IPRT - No-CRT strchr() alias for gcc.
32 #undef strchr macro
36 # pragma weak strchr macro
40 extern char *(strchr)(const char *psz, int ch) function
42 return RT_NOCRT(strchr)(psz, ch);
47 __asm__(".weak strchr\t\n"
48 " .set strchr," RT_NOCRT_STR(strchr) "\t\n");
51 extern __typeof(RT_NOCRT(strchr)) strchr __attribute_
[all...]
/vbox/include/iprt/nocrt/
H A Dstring.h42 char * RT_NOCRT(strchr)(const char *psz, int ch);
64 # define strchr RT_NOCRT(strchr) macro
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/String/
H A DSearching.c34 /** The strchr function locates the first occurrence of c (converted to a char)
38 @return The strchr function returns a pointer to the located character,
42 strchr(const char *s, int c) function
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dstring.c140 * strchr - Find the first occurrence of a character in a string
144 char * strchr(const char * s, int c) function
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Dhpux.c209 * The HP version of strchr is buggy. It looks past the end of the
214 * case HP's version of strchr somehow gets used instead of this one.
217 strchr(const char *s, int c) function
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Include/
H A DOpenSslSupport.h171 char *strchr (const char *, int);
238 #define strchr(str,ch) ScanMem8((VOID *)(str),AsciiStrSize(str),(UINT8)ch) macro
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/hw/xfree86/os-support/
H A Dxf86_libc.h361 #undef strchr macro
362 #define strchr(ccp,i) xf86strchr(ccp,i) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dxf86_libc.h405 #undef strchr macro
406 #define strchr(ccp,i) xf86strchr(ccp,i) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dxf86_libc.h405 #undef strchr macro
406 #define strchr(ccp,i) xf86strchr(ccp,i) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dxf86_libc.h411 #undef strchr macro
412 #define strchr(ccp,i) xf86strchr(ccp,i) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Dxf86_libc.h409 #undef strchr macro
410 #define strchr(ccp,i) xf86strchr(ccp,i) macro

Completed in 86 milliseconds