This repository has been archived on 2024-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
probotic/include/creds_parser.h

13 lines
220 B
C
Raw Normal View History

2023-08-02 10:44:10 -04:00
#ifndef CREDS_PARSER_H
#define CREDS_PARSER_H
typedef struct
{
char * username;
char * password;
} creds_t;
int parse_creds(creds_t * creds, char const * creds_file);
void clean_creds(creds_t * creds);
#endif