libkern.h (ba96f37758412151885d50838d2031623fc2b918) | libkern.h (744799ead25f22feac7621611b98391d1c80037e) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1992, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 159 unchanged lines hidden (view full) --- 168int scanc(u_int, const u_char *, const u_char *, int); 169void srandom(u_long); 170int strcasecmp(const char *, const char *); 171char *strcat(char * __restrict, const char * __restrict); 172char *strchr(const char *, int); 173int strcmp(const char *, const char *); 174char *strcpy(char * __restrict, const char * __restrict); 175size_t strcspn(const char * __restrict, const char * __restrict) __pure; | 1/*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1992, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 159 unchanged lines hidden (view full) --- 168int scanc(u_int, const u_char *, const u_char *, int); 169void srandom(u_long); 170int strcasecmp(const char *, const char *); 171char *strcat(char * __restrict, const char * __restrict); 172char *strchr(const char *, int); 173int strcmp(const char *, const char *); 174char *strcpy(char * __restrict, const char * __restrict); 175size_t strcspn(const char * __restrict, const char * __restrict) __pure; |
176char *strdup_flags(const char *__restrict, struct malloc_type *, int); |
|
176char *strdup(const char *__restrict, struct malloc_type *); 177char *strncat(char *, const char *, size_t); 178char *strndup(const char *__restrict, size_t, struct malloc_type *); 179size_t strlcat(char *, const char *, size_t); 180size_t strlcpy(char *, const char *, size_t); 181size_t strlen(const char *); 182int strncasecmp(const char *, const char *, size_t); 183int strncmp(const char *, const char *, size_t); --- 68 unchanged lines hidden --- | 177char *strdup(const char *__restrict, struct malloc_type *); 178char *strncat(char *, const char *, size_t); 179char *strndup(const char *__restrict, size_t, struct malloc_type *); 180size_t strlcat(char *, const char *, size_t); 181size_t strlcpy(char *, const char *, size_t); 182size_t strlen(const char *); 183int strncasecmp(const char *, const char *, size_t); 184int strncmp(const char *, const char *, size_t); --- 68 unchanged lines hidden --- |