// // Created by nicolas on 22/03/18. // #ifndef ESC_ESC_CREDENTIALS_H #define ESC_ESC_CREDENTIALS_H struct st_credentials { const char* username; const char* password; }; typedef struct st_credentials esc_credentials_t; esc_credentials_t* esc_credentials_create(const char* username, const char* password); void esc_credentials_destroy(esc_credentials_t* creds); #endif //ESC_ESC_CREDENTIALS_H