1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef AUTH_HPP #define AUTH_HPP #include "db.hpp" namespace Auth { struct User { char name[64]; int id; }; User createUser(const char *name); } #endif