home *** CD-ROM | disk | FTP | other *** search
- /*
- * COPYRIGHT:
- *
- * Unless otherwise noted, all files are Copyright (c) 1999 Amiga, Inc.
- * All rights reserved.
- *
- * DISCLAIMER:
- *
- * This software is provided "as is". No representations or warranties
- * are made with respect to the accuracy, reliability, performance,
- * currentness, or operation of this software, and all use is at your
- * own risk. Neither Amiga nor the authors assume any responsibility
- * or liability whatsoever with respect to your use of this software.
- */
-
- #include <workbench/workbench.h>
- #include <clib/icon_protos.h>
- #include <clib/dos_protos.h>
-
- int
- main(int argc,char **argv)
- {
- if(argc > 1)
- {
- char buffer[40];
- int i;
-
- for(i = 1 ; i < argc ; i++)
- {
- BumpRevision(buffer,argv[i]);
-
- Printf("BumpRevision(..,\"%s\") = \"%s\"\n",
- argv[i],buffer);
- }
- }
-
- return(0);
- }
-