blob: 70783a368de279aa78855e01b3c184b4669d88d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef BLOG_H
#define BLOG_H
#define PASSWORD_FILE "/blog/password"
#define DATA_DIRECTORY "/jakob"
void read_post_data(void);
char *find_post_data(char *key);
int authenticate(const char *username, const char *password);
int handle_post(void);
int show_entry(const char *path);
void add_to_index(const char *path, const char *title);
#endif
|