blob: 6b7279dba432911ab2175c6a23032e8c30e01836 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* blogc: A blog compiler.
* Copyright (C) 2014-2017 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file LICENSE.
*/
#ifndef _MAKE_LIGHTTPD_H
#define _MAKE_LIGHTTPD_H
char* bm_lighttpd_deploy(const char *output_dir, const char *host,
const char *port);
void bm_lighttpd_destroy(const char *fname);
#endif /* _MAKE_LIGHTTPD_H */
|