[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.54

1.54    ! ray         1: /*     $OpenBSD: rcsprog.h,v 1.53 2006/04/21 17:17:29 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
1.52      xsa        29:
                     30: #include <err.h>
1.31      joris      31:
1.33      xsa        32: #include "log.h"
                     33: #include "rcs.h"
1.53      xsa        34: #include "rcsutil.h"
1.36      joris      35: #include "worklist.h"
1.39      niallo     36: #include "util.h"
1.31      joris      37: #include "xmalloc.h"
1.1       joris      38:
1.37      ray        39: #define RCS_DEFAULT_SUFFIX     ",v/"
1.17      xsa        40: #define RCS_TMPDIR_DEFAULT     "/tmp"
                     41:
1.18      niallo     42: /* flags specific to ci.c */
1.29      xsa        43: #define CI_SYMFORCE    (1<<0)
                     44: #define CI_DEFAULT     (1<<1)
                     45: #define CI_INIT                (1<<2)
1.35      niallo     46: #define CI_KEYWORDSCAN  (1<<3)
1.48      niallo     47: #define CI_SKIPDESC    (1<<4)
1.18      niallo     48:
                     49: /* flags specific to co.c */
1.48      niallo     50: #define CO_ACLAPPEND   (1<<5)
                     51: #define CO_AUTHOR      (1<<6)
                     52: #define CO_LOCK                (1<<7)
                     53: #define CO_REVDATE     (1<<8)
                     54: #define CO_REVERT      (1<<9)
                     55: #define CO_STATE       (1<<10)
                     56: #define CO_UNLOCK      (1<<11)
1.18      niallo     57:
1.40      ray        58: /* flags specific to rcsprog.c */
1.48      niallo     59: #define RCSPROG_EFLAG  (1<<12)
                     60: #define RCSPROG_LFLAG  (1<<13)
                     61: #define RCSPROG_NFLAG  (1<<14)
1.54    ! ray        62: #define RCSPROG_UFLAG  (1<<15)
1.40      ray        63:
1.18      niallo     64: /* shared flags  */
1.54    ! ray        65: #define DESCRIPTION    (1<<16)
1.48      niallo     66: #define FORCE          (1<<17)
                     67: #define INTERACTIVE    (1<<18)
                     68: #define NEWFILE                (1<<19)
1.51      xsa        69: #define PIPEOUT                (1<<20)
                     70: #define PRESERVETIME   (1<<21)
                     71: #define QUIET          (1<<22)
1.18      niallo     72:
1.25      xsa        73: extern char    *__progname;
                     74: extern const char      rcs_version[];
                     75:
                     76: extern int      rcs_optind;
                     77: extern char    *rcs_optarg;
                     78: extern char    *rcs_suffixes;
                     79: extern char    *rcs_tmpdir;
1.36      joris      80: extern struct cvs_wklhead rcs_temp_files;
1.10      joris      81:
1.9       niallo     82: /* date.y */
                     83: time_t  cvs_date_parse(const char *);
1.1       joris      84:
1.23      xsa        85: /* ci.c */
                     86: int    checkin_main(int, char **);
                     87: void   checkin_usage(void);
                     88:
                     89: /* co.c */
                     90: int    checkout_main(int, char **);
1.30      joris      91: int    checkout_rev(RCSFILE *, RCSNUM *, const char *, int, const char *,
1.32      joris      92:            const char *, const char *, const char *);
1.4       xsa        93: void   checkout_usage(void);
1.23      xsa        94:
                     95: /* ident.c */
                     96: int    ident_main(int, char **);
                     97: void   ident_usage(void);
                     98:
                     99: /* rcsclean.c */
                    100: int    rcsclean_main(int, char **);
                    101: void   rcsclean_usage(void);
                    102:
                    103: /* rcsdiff.c */
                    104: int    rcsdiff_main(int, char **);
1.5       joris     105: void   rcsdiff_usage(void);
1.23      xsa       106:
                    107: /* rcsmerge.c */
                    108: int    rcsmerge_main(int, char **);
1.15      xsa       109: void   rcsmerge_usage(void);
1.1       joris     110:
1.23      xsa       111: /* rcsprog.c */
1.12      joris     112: int    rcs_init(char *, char **, int);
1.10      joris     113: int    rcs_getopt(int, char **, const char *);
1.23      xsa       114: int    rcs_main(int, char **);
                    115: void   rcs_usage(void);
                    116: void   (*usage)(void);
                    117:
1.34      xsa       118: /* rlog.c */
1.7       joris     119: int    rlog_main(int, char **);
1.23      xsa       120: void   rlog_usage(void);
1.1       joris     121:
1.4       xsa       122: #endif /* RCSPROG_H */