string.h (52fbcc15a084a97c643b0be554fbd46a08d511d6) | string.h (82e45205c802a06f0663e5f0e4fd2f2f047d2936) |
---|---|
1/*- 2 * Copyright (c) 1990, 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 --- 45 unchanged lines hidden (view full) --- 54#define _SIZE_T_DECLARED 55#endif 56 57__BEGIN_DECLS 58#if __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE 59void *memccpy(void * __restrict, const void * __restrict, int, size_t); 60#endif 61void *memchr(const void *, int, size_t) __pure; | 1/*- 2 * Copyright (c) 1990, 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 --- 45 unchanged lines hidden (view full) --- 54#define _SIZE_T_DECLARED 55#endif 56 57__BEGIN_DECLS 58#if __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE 59void *memccpy(void * __restrict, const void * __restrict, int, size_t); 60#endif 61void *memchr(const void *, int, size_t) __pure; |
62void *memrchr(const void *, int, size_t) __pure; |
|
62int memcmp(const void *, const void *, size_t) __pure; 63void *memcpy(void * __restrict, const void * __restrict, size_t); 64#if __BSD_VISIBLE 65void *memmem(const void *, size_t, const void *, size_t); 66#endif 67void *memmove(void *, const void *, size_t); 68void *memset(void *, int, size_t); 69#if __BSD_VISIBLE --- 60 unchanged lines hidden --- | 63int memcmp(const void *, const void *, size_t) __pure; 64void *memcpy(void * __restrict, const void * __restrict, size_t); 65#if __BSD_VISIBLE 66void *memmem(const void *, size_t, const void *, size_t); 67#endif 68void *memmove(void *, const void *, size_t); 69void *memset(void *, int, size_t); 70#if __BSD_VISIBLE --- 60 unchanged lines hidden --- |