File: args.h

package info (click to toggle)
sn 0.3.4a-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 784 kB
  • ctags: 826
  • sloc: ansic: 9,023; sh: 339; makefile: 208
file content (21 lines) | stat: -rw-r--r-- 512 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * This file is part of the sn package.
 * Distribution of sn is covered by the GNU GPL. See file COPYING.
 * Copyright  1998-2000 Harold Tay.
 * Copyright  2000- Patrik Rdman.
 */

#ifndef ARGS_H
#define ARGS_H

#include "lib/readln.h"

extern char *args[20];
extern char args_outbuf[1024];
extern char args_inbuf[1024];
extern int args_write (int fd, char *fmt, ...);
extern int args_read (struct readln *rp);
extern void args_report (char *tag);
extern void args_flushtodot (struct readln *rp);

#endif