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

Annotation of src/usr.bin/rcs/rcsprog.h, Revision 1.24

1.24    ! xsa         1: /*     $OpenBSD: rcsprog.h,v 1.23 2005/11/22 13:26:53 xsa Exp $        */
1.1       joris       2: /*
                      3:  * Copyright (c) 2005 Joris Vink <joris@openbsd.org>
                      4:  * All rights reserved.
                      5:  *
                      6:  * Redistribution and use in source and binary forms, with or without
                      7:  * modification, are permitted provided that the following conditions
                      8:  * are met:
                      9:  *
                     10:  * 1. Redistributions of source code must retain the above copyright
                     11:  *    notice, this list of conditions and the following disclaimer.
                     12:  * 2. The name of the author may not be used to endorse or promote products
                     13:  *    derived from this software without specific prior written permission.
                     14:  *
                     15:  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
                     16:  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
                     17:  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
                     18:  * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
                     19:  * EXEMPLARY, OR CONSEQUENTIAL  DAMAGES (INCLUDING, BUT NOT LIMITED TO,
                     20:  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
                     21:  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
                     22:  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
                     23:  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
                     24:  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
                     25:  */
                     26:
1.4       xsa        27: #ifndef RCSPROG_H
1.1       joris      28: #define RCSPROG_H
                     29:
1.17      xsa        30: #define RCS_TMPDIR_DEFAULT     "/tmp"
                     31:
1.18      niallo     32: /* flags specific to ci.c */
1.20      niallo     33: #define CI_SYMFORCE     (1<<0)
                     34: #define CI_DEFAULT      (1<<1)
                     35: #define CI_INIT         (1<<2)
1.18      niallo     36:
                     37: /* flags specific to co.c */
1.20      niallo     38: #define CO_ACLAPPEND    (1<<3)
                     39: #define CO_LOCK                (1<<4)
                     40: #define CO_REVDATE      (1<<5)
                     41: #define CO_STATE        (1<<6)
                     42: #define CO_UNLOCK       (1<<7)
1.18      niallo     43:
                     44: /* shared flags  */
1.20      niallo     45: #define FORCE           (1<<8)
1.21      xsa        46: #define INTERACTIVE     (1<<9)
1.20      niallo     47: #define NEWFILE         (1<<10)
1.24    ! xsa        48: #define PRESERVETIME   (1<<11)
1.18      niallo     49:
1.1       joris      50: extern char *__progname;
                     51: extern const char rcs_version[];
1.2       joris      52: extern int verbose;
1.16      joris      53: extern int pipeout;
1.9       niallo     54:
1.10      joris      55: extern int rcs_optind;
                     56: extern char *rcs_optarg;
1.22      xsa        57: extern char *rcs_suffixes;
1.17      xsa        58: extern char *rcs_tmpdir;
1.10      joris      59:
1.9       niallo     60: /* date.y */
                     61: time_t  cvs_date_parse(const char *);
1.1       joris      62:
1.23      xsa        63: /* ci.c */
                     64: int    checkin_main(int, char **);
                     65: void   checkin_usage(void);
                     66:
                     67: /* co.c */
                     68: int    checkout_main(int, char **);
                     69: int    checkout_rev(RCSFILE *, RCSNUM *, const char *, int, const char *);
1.4       xsa        70: void   checkout_usage(void);
1.23      xsa        71:
                     72: /* ident.c */
                     73: int    ident_main(int, char **);
                     74: void   ident_usage(void);
                     75:
                     76: /* rcsclean.c */
                     77: int    rcsclean_main(int, char **);
                     78: void   rcsclean_usage(void);
                     79:
                     80: /* rcsdiff.c */
                     81: int    rcsdiff_main(int, char **);
1.5       joris      82: void   rcsdiff_usage(void);
1.23      xsa        83:
                     84: /* rcsmerge.c */
                     85: int    rcsmerge_main(int, char **);
1.15      xsa        86: void   rcsmerge_usage(void);
1.1       joris      87:
1.23      xsa        88: /* rcsprog.c */
1.12      joris      89: int    rcs_init(char *, char **, int);
1.10      joris      90: int    rcs_getopt(int, char **, const char *);
1.23      xsa        91: int    rcs_main(int, char **);
1.4       xsa        92: int    rcs_statfile(char *, char *, size_t);
1.23      xsa        93: void   rcs_set_rev(const char *, RCSNUM **);
                     94: void   rcs_usage(void);
                     95: void   (*usage)(void);
                     96:
                     97: /* rlog */
1.7       joris      98: int    rlog_main(int, char **);
1.23      xsa        99: void   rlog_usage(void);
1.1       joris     100:
1.4       xsa       101: #endif /* RCSPROG_H */