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/parse.h

14 lines
231 B
C
Raw Normal View History

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