Claude opus authored everything to make the user and task work. First iteration

This commit is contained in:
2026-03-07 21:39:10 -05:00
parent 8ab1efcca7
commit 2bee7dce43
25 changed files with 2003 additions and 164 deletions

View File

@@ -0,0 +1,11 @@
#pragma once
#include "types.hpp"
#include "user.hpp"
// Data store operations for users
internal user_t *find_user(uint8 id);
internal user_t *add_user(const char *name);
internal bool remove_user(uint8 id);
internal void seed_users();