|
| void *_cdecl | memset (void *targ, unsigned char val, size_t len) |
| |
| void | memset (void *targ, unsigned char val, uint32_t len) |
| |
| int | memcmp (const void *vl, const void *vr, size_t n) |
| |
| void * | memcpy (void *dest, void *src, size_t count) |
| |
| void * | memcpy (void *dest, void *src, uint32_t count) |
| |
| int | strcmp (const char *str1, const char *str2) |
| |
| char * | strcpy (char *__restrict s1, const char *__restrict s2) |
| |
| size_t | strlen (const char *s) |
| |
| size_t | strnlen (const char *string, size_t maxlen) |
| |
| int | strncmp (const char *s1, const char *s2, size_t n) |
| |
| char * | strncpy (char *destString, const char *sourceString, size_t maxLength) |
| |
| char * | strchrnul (const char *s, int c) |
| |
| char * | strchr (const char *str, int character) |
| | locates first occurance of character in string
|
| |
| int | strcasecmp (const char *s1, const char *s2) |
| |
| int | strncasecmp (const char *s1, const char *s2, size_t length) |
| |
| char * | strcasestr (const char *s1, const char *s2) |
| |
| char * | strcat (char *destString, const char *sourceString) |
| |
| char * | strncat (char *destString, const char *sourceString, size_t maxLength) |
| |
| char * | strdup (const char *srcString) |
| |
| char * | strerror (int error) |
| |
| char * | strrchr (const char *string, int character) |
| |
| size_t | strspn (const char *s1, const char *s2) |
| |
| char * | strstr (const char *s1, const char *s2) |
| |
| char * | strtok (char *string, const char *delim) |
| |
| char * | strtok_r (char *string, const char *delim, char **saveptr) |
| |
| long long int | strtoll (const char *string, char **endString, int base) |
| |
| void | bzero (void *string, size_t number) |
| |
| void | bcopy (const void *src, void *dest, size_t len) |
| |
| int | ffs (int i) |
| |
| void * | memmove (void *dest, void const *src, unsigned __int64 bytes) |
| |
| void * | memchr (const void *src, int c, size_t n) |
| |
BSD 2-Clause License
Copyright (c) 2022-2023, Manas Kamal Choudhury All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
| void memset |
( |
void * |
targ, |
|
|
unsigned char |
val, |
|
|
uint32_t |
len |
|
) |
| |
BSD 2-Clause License
Copyright (c) 2023-2025, Manas Kamal Choudhury All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
| int strcmp |
( |
const char * |
str1, |
|
|
const char * |
str2 |
|
) |
| |
BSD 2-Clause License
Copyright (c) 2022, Manas Kamal Choudhury All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.