Codebase list atop / 48695b22-bc51-4d76-a770-c1aa8f18c33d/main version.c
48695b22-bc51-4d76-a770-c1aa8f18c33d/main

Tree @48695b22-bc51-4d76-a770-c1aa8f18c33d/main (Download .tar.gz)

version.c @48695b22-bc51-4d76-a770-c1aa8f18c33d/mainraw · history · blame

/* No manual changes in this file */
#include <stdio.h>
#include <string.h>
#include "version.h"
#include "versdate.h"

static char atopversion[] = ATOPVERS;
static char atopdate[]    = ATOPDATE;

char *
getstrvers(void)
{
	static char vers[256];

	snprintf(vers, sizeof vers,
		"Version: %s - %s     <gerlof.langeveld@atoptool.nl>",
		atopversion, atopdate);

	return vers;
}

unsigned short
getnumvers(void)
{
	int	vers1, vers2;

	sscanf(atopversion, "%u.%u", &vers1, &vers2);

	return (unsigned short) ((vers1 << 8) + vers2);
}