1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef __GS_APP_H #define __GS_APP_H struct gs_app { char *client_id; char *client_secret; }; struct gs_app *gs_app_register(const char *domain); #endif