Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for STRNCAT (0.1 sec)

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

    +   <https://www.gnu.org/licenses/>.  */
     
     #include <string.h>
     
    -#ifdef _LIBC
    -# include <memcopy.h>
    -#endif
    -
     #ifndef STRNCAT
     # undef strncat
     # define STRNCAT  strncat
    @@ -29,54 +25,16 @@
     char *
     STRNCAT (char *s1, const char *s2, size_t n)
     {
    -  char c;
       char *s = s1;
     
       /* Find the end of S1.  */
    -  do
    -    c = *s1++;
    -  while (c != '\0');
    -
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/test.go

    	var x C.size_t
    
    	C.calloc(x, x)
    	C.malloc(x)
    	C.realloc(nil, x)
    	C.memcpy(nil, nil, x)
    	C.memcmp(nil, nil, x)
    	C.memmove(nil, nil, x)
    	C.strncpy(nil, nil, x)
    	C.strncmp(nil, nil, x)
    	C.strncat(nil, nil, x)
    	x = C.strxfrm(nil, nil, x)
    	C.memchr(nil, 0, x)
    	x = C.strcspn(nil, nil)
    	x = C.strspn(nil, nil)
    	C.memset(nil, 0, x)
    	x = C.strlen(nil)
    	_ = x
    }
    
    // issue 6612
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top