File: conf.h

package info (click to toggle)
twoftpd 1.20-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 572 kB
  • ctags: 295
  • sloc: ansic: 2,052; sh: 1,940; makefile: 108
file content (18 lines) | stat: -rw-r--r-- 459 bytes parent folder | download | duplicates (5)
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 <iobuf/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