This is patchlevel.c in view mode; [Download] [Up]
//------------------------------------------------------------------------
// ^FILE: patchlevel.c - version specific information
//
// ^DESCRIPTION:
// This file contains all the version specific information of this
// particular release of the CmdLine library. It also implements
// the static member functions of a CmdLine that return version
// specific information.
//
// ^HISTORY:
// 04/03/92 Brad Appleton <brad@ssd.csd.harris.com> Created
//
// 03/03/93 Brad Appleton <brad@ssd.csd.harris.com>
// - Modified for patch 1
//
// 08/19/93 Brad Appleton <brad@ssd.csd.harris.com>
// - Modified for patch 2
//
// 10/08/93 Brad Appleton <brad@ssd.csd.harris.com>
// - Modified for patch 3
//
// 01/11/94 Brad Appleton <brad@ssd.csd.harris.com>
// - Modified for patch 4
//-^^---------------------------------------------------------------------
#include "cmdline.h"
// Record the version-identifier for this configuration of the project.
//
// My source-code management system lets me use a symbolic-name
// to identify a given configuration of the project. From this
// symbolic-name I can easily find out the exact version of each
// file that makes up this version of the project.
//
static const char ident[] =
"@(#)SMS task: cmdline-1.04" ;
// Release and patchlevel information
#define CMDLINE_RELEASE 1
#define CMDLINE_PATCHLEVEL 4
#define CMDLINE_IDENT "@(#)CmdLine 1.04"
unsigned
CmdLine::release(void) { return CMDLINE_RELEASE; }
unsigned
CmdLine::patchlevel(void) { return CMDLINE_PATCHLEVEL; }
const char *
CmdLine::ident(void) {
static const char Ident[] = CMDLINE_IDENT ;
return Ident;
}
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.