1 2 3 4 5 6 7 8 9 10 11
#include "auth.hpp" namespace Auth { User createUser(const char *name) { User u; u.id = 1; return u; } }