YREA-SLS/SLS_C/include/sls/string.h

15 lines
227 B
C

// Kyler Olsen
// YREA SLS
// Strings Header
// November 2025
#ifndef SLS_STRING_H
#define SLS_STRING_H
#include <stddef.h>
int isascii(unsigned char c);
size_t strnlen(const char *s, size_t maxlen);
#endif // SLS_STRING_H