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

  1. /* See LICENSE file for copyright and license details. */
  2. #ifndef DATA_H
  3. #define DATA_H
  4. #include "http.h"
  5. #include "util.h"
  6. extern enum status (* const data_fct[])(const struct response *,
  7. struct buffer *, size_t *);
  8. enum status data_prepare_dirlisting_buf(const struct response *,
  9. struct buffer *, size_t *);
  10. enum status data_prepare_error_buf(const struct response *,
  11. struct buffer *, size_t *);
  12. enum status data_prepare_file_buf(const struct response *,
  13. struct buffer *, size_t *);
  14. #endif /* DATA_H */