blob: 051f162067b16a6089fc6157a27466d9f6ef6475 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef BLOG_H
#define BLOG_H
void read_post_data(void);
char *find_post_data(char *key);
int verify_creds(const char *username, const char *password);
int handle_post(void);
int show_entry(const char *path);
#endif
|