Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for __builtin_strchr (0.17 sec)

  1. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -# if __GNUC_PREREQ (3, 2)
     #  define strchr(s, c) \
       (__extension__ (__builtin_constant_p (c) && !__builtin_constant_p (s)	      \
     		  && (c) == '\0'					      \
     		  ? (char *) __rawmemchr (s, c)				      \
     		  : __builtin_strchr (s, c)))
    -# else
    -#  define strchr(s, c) \
    -  (__extension__ (__builtin_constant_p (c) && (c) == '\0'		      \
    -		  ? (char *) __rawmemchr (s, c)				      \
    -		  : strchr (s, c)))
    -# endif
     #endif
     
    Others
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 42.9K bytes
    - Viewed (1)
Back to top