summaryrefslogtreecommitdiff
path: root/tools/include/nolibc/string.h
AgeCommit message (Expand)AuthorFilesLines
2023-10-12tools/nolibc: string: Remove the `_nolibc_memcpy_up()` functionAmmar Faizi1-13/+7
2023-10-12tools/nolibc: string: Remove the `_nolibc_memcpy_down()` functionAmmar Faizi1-10/+0
2023-10-12tools/nolibc: x86-64: Use `rep stosb` for `memset()`Ammar Faizi1-0/+2
2023-10-12tools/nolibc: x86-64: Use `rep movsb` for `memcpy()` and `memmove()`Ammar Faizi1-0/+4
2023-06-09tools/nolibc: use standard __asm__ statementsThomas Weißschuh1-2/+2
2023-01-09tools/nolibc: prevent gcc from making memset() loop over itselfWilly Tarreau1-1/+4
2023-01-09tools/nolibc: fix missing includes causing build issues at -O0Willy Tarreau1-0/+3
2022-10-29tools/nolibc/string: Fix memcmp() implementationRasmus Villemoes1-2/+2
2022-10-29tools/nolibc: Fix missing strlen() definition and infinite loop with gcc-12Willy Tarreau1-5/+8
2022-04-21tools/nolibc/string: Implement `strdup()` and `strndup()`Ammar Faizi1-0/+32
2022-04-21tools/nolibc/string: Implement `strnlen()`Ammar Faizi1-0/+9
2022-04-21tools/nolibc/string: do not use __builtin_strlen() at -O0Willy Tarreau1-1/+10
2022-04-21tools/nolibc/string: add strcmp() and strncmp()Willy Tarreau1-0/+23
2022-04-21tools/nolibc/string: export memset() and memmove()Willy Tarreau1-2/+8
2022-04-21tools/nolibc: move exported functions to their own sectionWilly Tarreau1-1/+1
2022-04-21tools/nolibc/string: add tiny versions of strncat() and strlcat()Willy Tarreau1-0/+41
2022-04-21tools/nolibc/string: add strncpy() and strlcpy()Willy Tarreau1-0/+28
2022-04-21tools/nolibc/string: slightly simplify memmove()Willy Tarreau1-6/+14
2022-04-21tools/nolibc/string: use unidirectional variants for memcpy()Willy Tarreau1-1/+23
2022-04-21tools/nolibc/string: split the string functions into string.hWilly Tarreau1-0/+107