/* Our own header, to be included *after* all standard system headers */
#ifndef __ourhdr_h
#define __ourhdr_h
#include /* required for some of our prototypes */
#include /* for convenience */
#include /* for convenience */
#include /* for convenience */
#include /* for convenience */
#define MAXLINE 4096 /* max line length */
#define FILE_MODE (S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH)
/* default file access permissions for new files */
#define DIR_MODE (FILE_MODE | S_IXUSR | S_IXGRP | S_IXOTH)
/* default permissions for new directories */
typedef void Sigfunc(int); /* for signal handlers */
/* 4.3BSD Reno doesn't define SIG_ERR */
/* prototypes for our own functions */
char *path_alloc(int *); /* Program 2.2 */
int open_max(void); /* Program 2.3 */
void clr_fl(int, int); /* Program 3.5 */
void set_fl(int, int); /* Program 3.5 */
void pr_exit(int); /* Program 8.3 */
void pr_mask(const char *); /* Program 10.10 */
Sigfunc *signal_intr(int, Sigfunc *); /* Program 10.13 */
int tty_cbreak(int); /* Program 11.10 */
int tty_raw(int); /* Program 11.10 */
int tty_reset(int); /* Program 11.10 */
int tty_atexit(int); /* program 11.10 */
#ifdef ECHO /* only if has been included */
struct termios *tty_termios(void); /* Program 11.10 */
#endif
void sleep_us(unsigned int); /* Exercise 12.6 */
ssize_t readn(int, void *, size_t); /* Program 12.13 */
ssize_t writen(int, const void *, size_t); /* Program 12.12 */
int daemon_init(void); /* Programs 13.1 */
int s_pipe(int *); /* Programs 15.2 and 15.3 */
int recv_fd(int, ssize_t (*func) (int, const void *, size_t));
/* Program 15.6 and 15.8 */
int send_fd(int, int); /* Programs 15.5 and 15.7 */
int send_err(int, int, const char *); /* Programs 15.20 */
int serv_listen(const char *); /* Programs 15.19 and 15.22 */
int serv_accept(int, uid_t *); /* Programs 15.20 and 15.24 */
int cli_conn(const char *); /* Programs 15.21 and 15.23 */
int buf_args(char *, int (*func)(int,char **)); /* Program 15.17 */
int ptym_open(char *); /* Programs 19.1 and 19.2 */
int ptys_open(int, char *); /* Programs 19.1 ans 19.2 */
#ifdef TIOCGWINSZ
pid_z pty_fork(int *, char *, const struct termios *, const struct winsize *);
/* Program 19.3 */
#endif