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
2023-08-02 09:24:50 -06:00

14 lines
221 B
C

#ifndef 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);
#define CREDS_PARSER_H
#endif