This repository has been archived on 2026-04-17. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
bhlib/src/String/Core.c

22 lines
298 B
C
Raw Normal View History

#include <BH/String.h>
#include <stdlib.h>
#include <string.h>
void BH_StringFree(char *string)
{
free(string);
}
char *BH_StringCopy(const char *string)
{
char *result;
result = malloc(strlen(string) + 1);
if (result)
strcpy(result, string);
return result;
}