summaryrefslogtreecommitdiff
path: root/usr.bin/rcs/rcsprog.h
AgeCommit message (Collapse)Author
2005-11-12- fix xsa breakage. char arrays on the stack are not NULL if empty. useNiall O'Higgins
flags instead. - add a few more flags defines while i'm here.
2005-11-08nuke trailing whitespaces;Xavier Santolaria
2005-11-02changes from Venice:Niall O'Higgins
- instead of using lots of individual flag variables, use a single int and bitwise operations on it. while this saves memory, really it saves code space and reduces complexity. checkout_rev() and checkout_state() in particular benefit from these changes since their parameters where growing really long. - implement `-s' option in co - implement `-M' option in ci "I like this, go for it" joris@
2005-10-27TMPDIR support; joris okXavier Santolaria
2005-10-19add co -p support;Joris Vink
input from xsa@ and niallo@;
2005-10-18more rcsmerge(1) bits;Xavier Santolaria
2005-10-18use rcs_set_rev() instead of duplicating code all over theJoris Vink
place to set a variable to the given revision number;
2005-10-17support -f flag for co;Joris Vink
'fine' niallo@
2005-10-15RCSINIT support;Joris Vink
ok niallo@
2005-10-15modularise checkout code into checkout_rev(). this shaves off a numberNiall O'Higgins
of lines in ci.c due to code re-use, and will simplify features which are in the pipeline. no functional changes. ok joris@
2005-10-13To be fully compatibly with the GNU RCS tools we need to have theJoris Vink
same way of parsing commandline options. Since getopt(3) allows spaces between arguments and GNU RCS tools does not we needed to roll out our own way of option handling, and here it is. ok niallo@
2005-10-11- support -d <date> option in ci.Niall O'Higgins
ok joris@
2005-10-06ident command, written by xsa@ but he is too busy with work right now;Joris Vink
2005-10-06support rlog command;Joris Vink
2005-10-06rcsclean now works;Joris Vink
2005-10-06thanks to niallo's diff changes, we now can support rcsdiff;Joris Vink
only basic stuff works, more coming;
2005-10-02minor knfXavier Santolaria
2005-09-30add missing function prototypes for ci.cNiall O'Higgins
2005-09-29support -q flag in 'co' and 'rcs'Joris Vink
2005-09-29- prototypes for the RCS commands go in rcsprog.hJoris Vink
- use rcs_statfile() to obtain the correct path to the RCS file