strings.h (246e7a2b6494cd991b08ac669ed761ecea0cc98c) | strings.h (78b59024b537e0993c0272fe57b8d23da5eaf0ce) |
---|---|
1/*- 2 * Copyright (c) 2002 Mike Barcroft <mike@FreeBSD.org> 3 * 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 --- 29 unchanged lines hidden (view full) --- 38#endif 39 40__BEGIN_DECLS 41#if __BSD_VISIBLE || __POSIX_VISIBLE <= 200112 42int bcmp(const void *, const void *, size_t) __pure; /* LEGACY */ 43void bcopy(const void *, void *, size_t); /* LEGACY */ 44void bzero(void *, size_t); /* LEGACY */ 45#endif | 1/*- 2 * Copyright (c) 2002 Mike Barcroft <mike@FreeBSD.org> 3 * 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 --- 29 unchanged lines hidden (view full) --- 38#endif 39 40__BEGIN_DECLS 41#if __BSD_VISIBLE || __POSIX_VISIBLE <= 200112 42int bcmp(const void *, const void *, size_t) __pure; /* LEGACY */ 43void bcopy(const void *, void *, size_t); /* LEGACY */ 44void bzero(void *, size_t); /* LEGACY */ 45#endif |
46#if __BSD_VISIBLE 47void explicit_bzero(void *, size_t); 48#endif |
|
46#if __XSI_VISIBLE 47int ffs(int) __pure2; 48#endif 49#if __BSD_VISIBLE 50int ffsl(long) __pure2; 51int ffsll(long long) __pure2; 52int fls(int) __pure2; 53int flsl(long) __pure2; --- 15 unchanged lines hidden --- | 49#if __XSI_VISIBLE 50int ffs(int) __pure2; 51#endif 52#if __BSD_VISIBLE 53int ffsl(long) __pure2; 54int ffsll(long long) __pure2; 55int fls(int) __pure2; 56int flsl(long) __pure2; --- 15 unchanged lines hidden --- |