1 2 3 4 5 6 7 8 9
#ifndef __AUTH_H #define __AUTH_H #include <stdbool.h> int login(const char *email, const char *password); #endif