File: conf.h

package info (click to toggle)
twoftpd 1.42-1.2
  • links: PTS
  • area: main
  • in suites: bullseye, buster
  • size: 700 kB
  • sloc: sh: 2,929; ansic: 2,182; makefile: 93
file content (18 lines) | stat: -rw-r--r-- 460 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef CONF__H__
#define CONF__H__

#include <bglibs/iobuf.h>
extern obuf conf_out;
extern void start_file(const char* filename, int mode);
extern void end_file(void);
extern void make_file(const char* filename, int mode,
		      const char* s1,
		      const char* s2,
		      const char* s3,
		      const char* s4,
		      const char* s5,
		      const char* s6,
		      const char* s7);
extern void make_fileu(const char* filename, unsigned val);

#endif