18 lines
805 B
C
18 lines
805 B
C
#pragma once
|
|
#include <types.h>
|
|
#include <Lib/VAArgs.h>
|
|
|
|
void* StringSet(BytePointer destination, ASCII value, Size count);
|
|
void* MemoryCopy(void* destination, const void* source, Size count);
|
|
|
|
Int32 StringCompare(const ASCII* firstString, const ASCII* secondString);
|
|
Int32 StringCompareWithLimit(const ASCII* firstString, const ASCII* secondString, Size limit);
|
|
|
|
ASCII* StringCopy(ASCII* destination, const ASCII* source);
|
|
ASCII* StringCopyWithLimit(ASCII* destination, const ASCII* source, Size limit);
|
|
|
|
Size StringGetLength(const ASCII* string);
|
|
const ASCII* StringFindLastOccurrenceOfCharacter(const ASCII* string, ASCII separator);
|
|
|
|
Int32 StringFormatVariadic(ASCII* string, Size size, const ASCII* format, va_list args);
|
|
Int32 StringFormat(ASCII* destination, UInt64 size, const ASCII* format, ...); |