Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for __rawmemchr (0.08 sec)

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

     /* Return pointer to C in S.  */
     #ifndef _HAVE_STRING_ARCH_strchr
     extern void *__rawmemchr (const void *__s, int __c);
    -# 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) \
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
Back to top