libkern.h (93eb73aa488637e0761a8e413b308bc3006d0564) | libkern.h (96c4266cb3ec0dfe1c78d4661551284f4ffdfa2a) |
---|---|
1/*- 2 * Copyright (c) 1992, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 78 unchanged lines hidden (view full) --- 87char *index(const char *, int); 88char *rindex(const char *, int); 89int scanc(u_int, const u_char *, const u_char *, int); 90int skpc(int, int, char *); 91void srandom(u_long); 92char *strcat(char * __restrict, const char * __restrict); 93int strcmp(const char *, const char *); 94char *strcpy(char * __restrict, const char * __restrict); | 1/*- 2 * Copyright (c) 1992, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 78 unchanged lines hidden (view full) --- 87char *index(const char *, int); 88char *rindex(const char *, int); 89int scanc(u_int, const u_char *, const u_char *, int); 90int skpc(int, int, char *); 91void srandom(u_long); 92char *strcat(char * __restrict, const char * __restrict); 93int strcmp(const char *, const char *); 94char *strcpy(char * __restrict, const char * __restrict); |
95char *strdup(const char *__restrict); |
|
95size_t strlcat(char *, const char *, size_t); 96size_t strlcpy(char *, const char *, size_t); 97size_t strlen(const char *); 98int strncmp(const char *, const char *, size_t); 99char *strncpy(char * __restrict, const char * __restrict, size_t); 100char *strsep(char **, const char *delim); 101int strvalid(const char *, size_t); 102 --- 33 unchanged lines hidden --- | 96size_t strlcat(char *, const char *, size_t); 97size_t strlcpy(char *, const char *, size_t); 98size_t strlen(const char *); 99int strncmp(const char *, const char *, size_t); 100char *strncpy(char * __restrict, const char * __restrict, size_t); 101char *strsep(char **, const char *delim); 102int strvalid(const char *, size_t); 103 --- 33 unchanged lines hidden --- |