Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
650 B

/* See LICENSE file for copyright and license details. */
#ifndef DATA_H
#define DATA_H
#include "http.h"
#include "util.h"
extern enum status (* const data_fct[])(const struct response *,
struct buffer *, size_t *);
enum status data_prepare_dirlisting_buf(const struct response *,
struct buffer *, size_t *);
enum status data_prepare_error_buf(const struct response *,
struct buffer *, size_t *);
enum status data_prepare_file_buf(const struct response *,
struct buffer *, size_t *);
#endif /* DATA_H */