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

15 lines
265 B
C

#ifndef CREDS_PARSER_H
typedef struct
{
char * username;
char * password;
} creds_t;
DELC void parse_command(char * cmd);
DELC int parse_creds(creds_t * creds, char const * creds_file);
DELC void clean_creds(creds_t * creds);
#define CREDS_PARSER_H
#endif