diff options
author | Mattias Andrée <maandree@kth.se> | 2018-11-23 20:45:04 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2018-11-23 20:45:04 +0100 |
commit | 4114aebeb33793fae59c1b39f83286ce19c5ea02 (patch) | |
tree | eaccbb544456df6a627bc4e702ed7976fcb67d9a | |
parent | Some fixes and tests (diff) | |
download | libsimple-4114aebeb33793fae59c1b39f83286ce19c5ea02.tar.gz libsimple-4114aebeb33793fae59c1b39f83286ce19c5ea02.tar.bz2 libsimple-4114aebeb33793fae59c1b39f83286ce19c5ea02.tar.xz |
Split out memelem.h from mem.h
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | libsimple.h | 1 | ||||
-rw-r--r-- | libsimple/mem.h | 261 | ||||
-rw-r--r-- | libsimple/memelem.h | 262 |
4 files changed, 264 insertions, 261 deletions
@@ -17,6 +17,7 @@ SUBHDR =\ libsimple/memalignz.h\ libsimple/memalloc.h\ libsimple/memdup.h\ + libsimple/memelem.h\ libsimple/overflow.h\ libsimple/posix_memalign.h\ libsimple/posix_memalignz.h\ diff --git a/libsimple.h b/libsimple.h index 6fd226e..6e2c08f 100644 --- a/libsimple.h +++ b/libsimple.h @@ -72,6 +72,7 @@ #include "libsimple/env.h" #include "libsimple/time.h" #include "libsimple/mem.h" +#include "libsimple/memelem.h" #include "libsimple/str.h" #include "libsimple/strn.h" #include "libsimple/overflow.h" diff --git a/libsimple/mem.h b/libsimple/mem.h index eb99bbb..e6fb310 100644 --- a/libsimple/mem.h +++ b/libsimple/mem.h @@ -444,217 +444,6 @@ void *libsimple_memrcasemem(const void *, size_t, const void *, size_t); /** - * Finds the first element in an array, the comparison is case-sensitive - * - * @param haystack The array of bytes to search - * @param nhaystack The length of `haystack`, divided by `needle` - * @param needle The substring to search for - * @param nneedle The length of `needle` - * @return `haystack` with a minimal offset such that, - * `!memcmp(r, needle, nneedle)` where `r` is the - * returned pointer and such that `(r - haystack) % nneedle == 0`, - * `NULL` if no such offset exists - */ -_LIBSIMPLE_GCC_ONLY(__attribute__((__pure__, __warn_unused_result__))) -void *libsimple_memelem(const void *, size_t, const void *, size_t); -#ifndef memelem -# define memelem libsimple_memelem -#endif - - -/** - * Finds the first element in an array, the comparison is case-sensitive - * - * This function is optimised for instances where it is already - * known that there is at least one occurence; if there is no - * occurence of the specified value in the specified array, its - * behaviour is undefined - * - * @param haystack The array of bytes to search - * @param needle The substring to search for - * @param nneedle The length of `needle` - * @return `haystack` with a minimal offset such that, - * `!memcmp(r, needle, nneedle)` where `r` is the - * returned pointer and such that `(r - haystack) % nneedle == 0` - */ -_LIBSIMPLE_GCC_ONLY(__attribute__((__pure__, __returns_nonnull__, __warn_unused_result__))) -void *libsimple_rawmemelem(const void *, const void *, size_t); /* TODO man */ -#ifndef rawmemelem -# define rawmemelem libsimple_rawmemelem -#endif - - -/** - * Finds the first element in an array, the comparison is case-sensitive - * - * @param haystack The array of bytes to search - * @param nhaystack The length of `haystack`, divided by `needle` - * @param needle The substring to search for - * @param nneedle The length of `needle` - * @return `haystack` with a minimal offset such that, - * `!memcmp(r, needle, nneedle)` where `r` is the - * returned pointer and such that `(r - haystack) % nneedle == 0`, - * `(void *)&((char *)haystack)[nhaystack * nneedle]` - * if no such offset exists - */ -_LIBSIMPLE_GCC_ONLY(__attribute__((__pure__, __warn_unused_result__))) -void *libsimple_memelemscan(const void *, size_t, const void *, size_t); -#ifndef memelemscan -# define memelemscan libsimple_memelemscan -#endif - - -/** - * Finds the last element in an array, the comparison is case-sensitive - * - * @param haystack The array of bytes to search - * @param nhaystack The length of `haystack`, divided by `needle` - * @param needle The substring to search for - * @param nneedle The length of `needle` - * @return `haystack` with a maximal offset such that, - * `!memcmp(r, needle, nneedle)` where `r` is the - * returned pointer and such that `(r - haystack) % nneedle == 0`, - * `NULL` if no such offset exists - */ -_LIBSIMPLE_GCC_ONLY(__attribute__((__pure__, __warn_unused_result__))) -void *libsimple_memrelem(const void *, size_t, const void *, size_t); -#ifndef memrelem -# define memrelem libsimple_memrelem -#endif - - -/** - * Finds the last element in an array, the comparison is case-sensitive - * - * This function is optimised for instances where it is already - * known that there is at least one occurence; if there is no - * occurence of the specified value in the specified array, its - * behaviour is undefined - * - * @param haystack The array of bytes to search - * @param nhaystack The length of `haystack`, divided by `needle` - * @param needle The substring to search for - * @param nneedle The length of `needle` - * @return `haystack` with a maximal offset such that, - * `!memcmp(r, needle, nneedle)` where `r` is the - * returned pointer and such that `(r - haystack) % nneedle == 0` - */ -_LIBSIMPLE_GCC_ONLY(__attribute__((__pure__, __returns_nonnull__, __warn_unused_result__))) -void *libsimple_rawmemrelem(const void *, size_t, const void *, size_t); /* TODO man */ -#ifndef rawmemrelem -# define rawmemrelem libsimple_rawmemrelem -#endif - - -/** - * Finds the first element in an array that is different from - * the specified element, the comparison is case-sensitive - * - * @param haystack The array of bytes to search - * @param nhaystack The length of `haystack`, divided by `needle` - * @param needle The substring to skip over - * @param nneedle The length of `needle` - * @return `haystack` with a minimal offset such that, - * `memcmp(r, needle, nneedle)` where `r` is the - * returned pointer and such that `(r - haystack) % nneedle == 0`, - * `NULL` if no such offset exists - */ -_LIBSIMPLE_GCC_ONLY(__attribute__((__pure__, __warn_unused_result__))) -void *libsimple_memelem_inv(const void *, size_t, const void *, size_t); -#ifndef memelem_inv -# define memelem_inv libsimple_memelem_inv -#endif - - -/** - * Finds the first element in an array that is different from - * the specified element, the comparison is case-sensitive - * - * This function is optimised for instances where it is already - * known that there is at least one occurence; if there is no - * occurence of any value other than the specified value in the - * specified array, its behaviour is undefined - * - * @param haystack The array of bytes to search - * @param needle The substring to skip over - * @param nneedle The length of `needle` - * @return `haystack` with a minimal offset such that, - * `memcmp(r, needle, nneedle)` where `r` is the - * returned pointer and such that `(r - haystack) % nneedle == 0` - */ -_LIBSIMPLE_GCC_ONLY(__attribute__((__pure__, __returns_nonnull__, __warn_unused_result__))) -void *libsimple_rawmemelem_inv(const void *, const void *, size_t); -#ifndef rawmemelem_inv -# define rawmemelem_inv libsimple_rawmemelem_inv -#endif - - -/** - * Finds the first element in an array that is different from - * the specified element, the comparison is case-sensitive - * - * @param haystack The array of bytes to search - * @param nhaystack The length of `haystack`, divided by `needle` - * @param needle The substring to skip over - * @param nneedle The length of `needle` - * @return `haystack` with a minimal offset such that, - * `memcmp(r, needle, nneedle)` where `r` is the - * returned pointer and such that `(r - haystack) % nneedle == 0`, - * `(void *)&((char *)haystack)[nhaystack * nneedle]` - * if no such offset exists - */ -_LIBSIMPLE_GCC_ONLY(__attribute__((__pure__, __warn_unused_result__))) -void *libsimple_memelemscan_inv(const void *, size_t, const void *, size_t); -#ifndef memelemscan_inv -# define memelemscan_inv libsimple_memelemscan_inv -#endif - - -/** - * Finds the last element in an array that is different from - * the specified element, the comparison is case-sensitive - * - * @param haystack The array of bytes to search - * @param nhaystack The length of `haystack`, divided by `needle` - * @param needle The substring to skip over - * @param nneedle The length of `needle` - * @return `haystack` with a maximal offset such that, - * `memcmp(r, needle, nneedle)` where `r` is the - * returned pointer and such that `(r - haystack) % nneedle == 0`, - * `NULL` if no such offset exists - */ -_LIBSIMPLE_GCC_ONLY(__attribute__((__pure__, __warn_unused_result__))) -void *libsimple_memrelem_inv(const void *, size_t, const void *, size_t); -#ifndef memrelem_inv -# define memrelem_inv libsimple_memrelem_inv -#endif - - -/** - * Finds the last element in an array that is different from - * the specified element, the comparison is case-sensitive - * - * This function is optimised for instances where it is already - * known that there is at least one occurence; if there is no - * occurence of any value other than the specified value in the - * specified array, its behaviour is undefined - * - * @param haystack The array of bytes to search - * @param nhaystack The length of `haystack`, divided by `needle` - * @param needle The substring to skip over - * @param nneedle The length of `needle` - * @return `haystack` with a maximal offset such that, - * `memcmp(r, needle, nneedle)` where `r` is the - * returned pointer and such that `(r - haystack) % nneedle == 0` - */ -_LIBSIMPLE_GCC_ONLY(__attribute__((__pure__, __returns_nonnull__, __warn_unused_result__))) -void *libsimple_rawmemrelem_inv(const void *, size_t, const void *, size_t); -#ifndef rawmemrelem_inv -# define rawmemrelem_inv libsimple_rawmemrelem_inv -#endif - - -/** * Checks the beginning of an array of bytes, the comparison is case-sensitive * * @param s The array of bytes to check @@ -811,39 +600,6 @@ static inline void *libsimple_mempset(void *__s, int __c, size_t __n) /** - * Fills an array with a number of copies of an item - * - * @param buf The array to fill - * @param item The element to fill `buf` with - * @param size The size of `item` - * @param nitems The number of copies to fill `buf` with - * @return `&buf[nelems * size]` - */ -_LIBSIMPLE_GCC_ONLY(__attribute__((__warn_unused_result__))) -void *libsimple_mempsetelem(void *__buf, const void *__item, size_t __size, size_t __nitems); -#ifndef mempsetelem -# define mempsetelem libsimple_mempsetelem -#endif - - -/** - * Fills an array with a number of copies of an item - * - * @param buf The array to fill - * @param item The element to fill `buf` with - * @param size The size of `item` - * @param nitems The number of copies to fill `buf` with - * @return `buf` - */ -_LIBSIMPLE_GCC_ONLY(__attribute__((__warn_unused_result__))) -static inline void *libsimple_memsetelem(void *__buf, const void *__item, size_t __size, size_t __nitems) -{ return __item = libsimple_mempsetelem(__buf, __item, __size, __nitems), __buf; } -#ifndef memsetelem -# define memsetelem libsimple_memsetelem -#endif - - -/** * Copy an array of bytes, but stop after a specific byte * * This function is optimised for instances where it is already @@ -949,23 +705,6 @@ libsimple_memreplace(void *__s_, int __old_, int __new_, size_t __n) /* TODO man /** - * Replace all instances of an element in an array of - * elements with another element - * - * @param s The array - * @param old The value of the elements to replace - * @param new The value to replace the elements with - * @param n The length of `s`, measured in elements - * @param width The size of each element - * @return `(void *)&((char *)s)[n * width]` - */ -void *libsimple_memreplaceelem(void *restrict __s_, const void *__old_, const void *__new_, size_t __n, size_t __width); -#ifndef memreplaceelem -# define memreplaceelem libsimple_memreplaceelem -#endif - - -/** * Copy an array of bytes but convert to lower case * * `d` and `s` may overlap; the function has an diff --git a/libsimple/memelem.h b/libsimple/memelem.h new file mode 100644 index 0000000..cd71c3d --- /dev/null +++ b/libsimple/memelem.h @@ -0,0 +1,262 @@ +/* See LICENSE file for copyright and license details. */ + + +/** + * Finds the first element in an array, the comparison is case-sensitive + * + * @param haystack The array of bytes to search + * @param nhaystack The length of `haystack`, divided by `needle` + * @param needle The substring to search for + * @param nneedle The length of `needle` + * @return `haystack` with a minimal offset such that, + * `!memcmp(r, needle, nneedle)` where `r` is the + * returned pointer and such that `(r - haystack) % nneedle == 0`, + * `NULL` if no such offset exists + */ +_LIBSIMPLE_GCC_ONLY(__attribute__((__pure__, __warn_unused_result__))) +void *libsimple_memelem(const void *, size_t, const void *, size_t); +#ifndef memelem +# define memelem libsimple_memelem +#endif + + +/** + * Finds the first element in an array, the comparison is case-sensitive + * + * This function is optimised for instances where it is already + * known that there is at least one occurence; if there is no + * occurence of the specified value in the specified array, its + * behaviour is undefined + * + * @param haystack The array of bytes to search + * @param needle The substring to search for + * @param nneedle The length of `needle` + * @return `haystack` with a minimal offset such that, + * `!memcmp(r, needle, nneedle)` where `r` is the + * returned pointer and such that `(r - haystack) % nneedle == 0` + */ +_LIBSIMPLE_GCC_ONLY(__attribute__((__pure__, __returns_nonnull__, __warn_unused_result__))) +void *libsimple_rawmemelem(const void *, const void *, size_t); /* TODO man */ +#ifndef rawmemelem +# define rawmemelem libsimple_rawmemelem +#endif + + +/** + * Finds the first element in an array, the comparison is case-sensitive + * + * @param haystack The array of bytes to search + * @param nhaystack The length of `haystack`, divided by `needle` + * @param needle The substring to search for + * @param nneedle The length of `needle` + * @return `haystack` with a minimal offset such that, + * `!memcmp(r, needle, nneedle)` where `r` is the + * returned pointer and such that `(r - haystack) % nneedle == 0`, + * `(void *)&((char *)haystack)[nhaystack * nneedle]` + * if no such offset exists + */ +_LIBSIMPLE_GCC_ONLY(__attribute__((__pure__, __warn_unused_result__))) +void *libsimple_memelemscan(const void *, size_t, const void *, size_t); +#ifndef memelemscan +# define memelemscan libsimple_memelemscan +#endif + + +/** + * Finds the last element in an array, the comparison is case-sensitive + * + * @param haystack The array of bytes to search + * @param nhaystack The length of `haystack`, divided by `needle` + * @param needle The substring to search for + * @param nneedle The length of `needle` + * @return `haystack` with a maximal offset such that, + * `!memcmp(r, needle, nneedle)` where `r` is the + * returned pointer and such that `(r - haystack) % nneedle == 0`, + * `NULL` if no such offset exists + */ +_LIBSIMPLE_GCC_ONLY(__attribute__((__pure__, __warn_unused_result__))) +void *libsimple_memrelem(const void *, size_t, const void *, size_t); +#ifndef memrelem +# define memrelem libsimple_memrelem +#endif + + +/** + * Finds the last element in an array, the comparison is case-sensitive + * + * This function is optimised for instances where it is already + * known that there is at least one occurence; if there is no + * occurence of the specified value in the specified array, its + * behaviour is undefined + * + * @param haystack The array of bytes to search + * @param nhaystack The length of `haystack`, divided by `needle` + * @param needle The substring to search for + * @param nneedle The length of `needle` + * @return `haystack` with a maximal offset such that, + * `!memcmp(r, needle, nneedle)` where `r` is the + * returned pointer and such that `(r - haystack) % nneedle == 0` + */ +_LIBSIMPLE_GCC_ONLY(__attribute__((__pure__, __returns_nonnull__, __warn_unused_result__))) +void *libsimple_rawmemrelem(const void *, size_t, const void *, size_t); /* TODO man */ +#ifndef rawmemrelem +# define rawmemrelem libsimple_rawmemrelem +#endif + + +/** + * Finds the first element in an array that is different from + * the specified element, the comparison is case-sensitive + * + * @param haystack The array of bytes to search + * @param nhaystack The length of `haystack`, divided by `needle` + * @param needle The substring to skip over + * @param nneedle The length of `needle` + * @return `haystack` with a minimal offset such that, + * `memcmp(r, needle, nneedle)` where `r` is the + * returned pointer and such that `(r - haystack) % nneedle == 0`, + * `NULL` if no such offset exists + */ +_LIBSIMPLE_GCC_ONLY(__attribute__((__pure__, __warn_unused_result__))) +void *libsimple_memelem_inv(const void *, size_t, const void *, size_t); +#ifndef memelem_inv +# define memelem_inv libsimple_memelem_inv +#endif + + +/** + * Finds the first element in an array that is different from + * the specified element, the comparison is case-sensitive + * + * This function is optimised for instances where it is already + * known that there is at least one occurence; if there is no + * occurence of any value other than the specified value in the + * specified array, its behaviour is undefined + * + * @param haystack The array of bytes to search + * @param needle The substring to skip over + * @param nneedle The length of `needle` + * @return `haystack` with a minimal offset such that, + * `memcmp(r, needle, nneedle)` where `r` is the + * returned pointer and such that `(r - haystack) % nneedle == 0` + */ +_LIBSIMPLE_GCC_ONLY(__attribute__((__pure__, __returns_nonnull__, __warn_unused_result__))) +void *libsimple_rawmemelem_inv(const void *, const void *, size_t); +#ifndef rawmemelem_inv +# define rawmemelem_inv libsimple_rawmemelem_inv +#endif + + +/** + * Finds the first element in an array that is different from + * the specified element, the comparison is case-sensitive + * + * @param haystack The array of bytes to search + * @param nhaystack The length of `haystack`, divided by `needle` + * @param needle The substring to skip over + * @param nneedle The length of `needle` + * @return `haystack` with a minimal offset such that, + * `memcmp(r, needle, nneedle)` where `r` is the + * returned pointer and such that `(r - haystack) % nneedle == 0`, + * `(void *)&((char *)haystack)[nhaystack * nneedle]` + * if no such offset exists + */ +_LIBSIMPLE_GCC_ONLY(__attribute__((__pure__, __warn_unused_result__))) +void *libsimple_memelemscan_inv(const void *, size_t, const void *, size_t); +#ifndef memelemscan_inv +# define memelemscan_inv libsimple_memelemscan_inv +#endif + + +/** + * Finds the last element in an array that is different from + * the specified element, the comparison is case-sensitive + * + * @param haystack The array of bytes to search + * @param nhaystack The length of `haystack`, divided by `needle` + * @param needle The substring to skip over + * @param nneedle The length of `needle` + * @return `haystack` with a maximal offset such that, + * `memcmp(r, needle, nneedle)` where `r` is the + * returned pointer and such that `(r - haystack) % nneedle == 0`, + * `NULL` if no such offset exists + */ +_LIBSIMPLE_GCC_ONLY(__attribute__((__pure__, __warn_unused_result__))) +void *libsimple_memrelem_inv(const void *, size_t, const void *, size_t); +#ifndef memrelem_inv +# define memrelem_inv libsimple_memrelem_inv +#endif + + +/** + * Finds the last element in an array that is different from + * the specified element, the comparison is case-sensitive + * + * This function is optimised for instances where it is already + * known that there is at least one occurence; if there is no + * occurence of any value other than the specified value in the + * specified array, its behaviour is undefined + * + * @param haystack The array of bytes to search + * @param nhaystack The length of `haystack`, divided by `needle` + * @param needle The substring to skip over + * @param nneedle The length of `needle` + * @return `haystack` with a maximal offset such that, + * `memcmp(r, needle, nneedle)` where `r` is the + * returned pointer and such that `(r - haystack) % nneedle == 0` + */ +_LIBSIMPLE_GCC_ONLY(__attribute__((__pure__, __returns_nonnull__, __warn_unused_result__))) +void *libsimple_rawmemrelem_inv(const void *, size_t, const void *, size_t); +#ifndef rawmemrelem_inv +# define rawmemrelem_inv libsimple_rawmemrelem_inv +#endif + + +/** + * Fills an array with a number of copies of an item + * + * @param buf The array to fill + * @param item The element to fill `buf` with + * @param size The size of `item` + * @param nitems The number of copies to fill `buf` with + * @return `&buf[nelems * size]` + */ +_LIBSIMPLE_GCC_ONLY(__attribute__((__warn_unused_result__))) +void *libsimple_mempsetelem(void *__buf, const void *__item, size_t __size, size_t __nitems); +#ifndef mempsetelem +# define mempsetelem libsimple_mempsetelem +#endif + + +/** + * Fills an array with a number of copies of an item + * + * @param buf The array to fill + * @param item The element to fill `buf` with + * @param size The size of `item` + * @param nitems The number of copies to fill `buf` with + * @return `buf` + */ +_LIBSIMPLE_GCC_ONLY(__attribute__((__warn_unused_result__))) +static inline void *libsimple_memsetelem(void *__buf, const void *__item, size_t __size, size_t __nitems) +{ return __item = libsimple_mempsetelem(__buf, __item, __size, __nitems), __buf; } +#ifndef memsetelem +# define memsetelem libsimple_memsetelem +#endif + + +/** + * Replace all instances of an element in an array of + * elements with another element + * + * @param s The array + * @param old The value of the elements to replace + * @param new The value to replace the elements with + * @param n The length of `s`, measured in elements + * @param width The size of each element + * @return `(void *)&((char *)s)[n * width]` + */ +void *libsimple_memreplaceelem(void *restrict __s_, const void *__old_, const void *__new_, size_t __n, size_t __width); +#ifndef memreplaceelem +# define memreplaceelem libsimple_memreplaceelem +#endif |