|
NAMErle_addhist - add a history comment to an RLE file.SYNOPSIS#include <rle.h>void rle_addhist( argv, in_hdr, out_hdr )
DESCRIPTIONrle_addhist is used to add history comments to the RLE(5) file in the form:HISTORY=cmd arg1 arg2 on Tue Sep 13 01:06:49 WST 1988 where cmd, arg1, etc. are the command line arguments which have been used to generate or filter this RLE file. The HISTORY comment is always appended to so that an accumulated history is kept along with a timestamp. Programs which generate RLE files should call rle_addhist as follows: rle_addhist(argv,(rle_hdr *)0,&out_hdr); Programs which filter RLE files should call rle_addhist as: rle_addhist(argv,&in_hdr,&out_hdr); SEE ALSOrle_hdr(3), rle_putcom(3), rle_getcom(3), librle(3), RLE(5).AUTHORAndrew Marriott,Curtin University of Technology (Australia)
Visit the GSP FreeBSD Man Page Interface. |