kerep/String/string.h

32 lines
727 B
C

#pragma once
#if __cplusplus
extern "C" {
#endif
#include "../base/base.h"
// my fixed length string struct
// doesn't store '\0' at the end
typedef struct string{
char* ptr; // char pointer
uint32 length; // amount of chars in ptr value
} string;
static const string stringNull={NULL,0};
// copies str content to new char pointer value (adding '\0' at the end)
char* string_cpToCptr(string str);
// copies cptr content (excluding '\0' at the end) to new string
string string_cpFromCharPtr(char* cptr);
// compares two strings, NullPtr-friendly
bool string_compare(string str0, string str1);
// creates new string which is reversed variant of <s>
string string_reverse(string s);
#if __cplusplus
}
#endif