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
2023-08-02 08:52:59 -06:00

13 lines
220 B
C

#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