Added API data definitions.

This commit is contained in:
2026-02-21 10:03:04 -05:00
parent c21c96046a
commit 504c78feba
4 changed files with 50 additions and 29 deletions

View File

@@ -1,5 +1,7 @@
#include "include/data.h"
#include <string.h>
int name_verify(const char* name) {
if (!name) return 0;
if (strlen(name) > NAME_MAX_LENGTH) return 0;