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

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