[BACK]Return to cu.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / cu

Annotation of src/usr.bin/cu/cu.h, Revision 1.3

1.3     ! nicm        1: /* $OpenBSD: cu.h,v 1.2 2012/07/10 08:16:27 nicm Exp $ */
1.1       nicm        2:
                      3: /*
                      4:  * Copyright (c) 2012 Nicholas Marriott <nicm@openbsd.org>
                      5:  *
                      6:  * Permission to use, copy, modify, and distribute this software for any
                      7:  * purpose with or without fee is hereby granted, provided that the above
                      8:  * copyright notice and this permission notice appear in all copies.
                      9:  *
                     10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     13:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     14:  * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
                     15:  * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
                     16:  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
                     17:  */
                     18:
                     19: #ifndef CU_H
                     20: #define CU_H
                     21:
                     22: /* command.c */
                     23: void                            do_command(char);
                     24:
                     25: /* cu.c */
                     26: extern struct bufferevent      *input_ev;
                     27: extern struct bufferevent      *output_ev;
                     28: extern int                      line_fd;
                     29: extern struct bufferevent      *line_ev;
1.2       nicm       30: int                             set_line(int);
1.1       nicm       31: void                            set_termios(void);
                     32: void                            restore_termios(void);
                     33: char                           *tilde_expand(const char *);
                     34:
                     35: /* input.c */
                     36: const char                     *get_input(const char *);
1.3     ! nicm       37:
        !            38: /* error.c */
        !            39: void                            cu_warn(const char *, ...)
        !            40:                                     __attribute__ ((format (printf, 1, 2)));
        !            41: void                            cu_warnx(const char *, ...)
        !            42:                                     __attribute__ ((format (printf, 1, 2)));
        !            43: void                            cu_err(int, const char *, ...)
        !            44:                                     __attribute__ ((format (printf, 2, 3)));
        !            45: void                            cu_errx(int, const char *, ...)
        !            46:                                     __attribute__ ((format (printf, 2, 3)));
1.1       nicm       47:
                     48: #endif