Sha256: 0c85604ff2c527a3f49a2c2c195d45b867d2edb509b67965ab581d4bc555d8f2

Contents?: true

Size: 532 Bytes

Versions: 1

Compression:

Stored size: 532 Bytes

Contents

/*
 * File:  version.c
 * Copyright (C) 2004 The Institute for System Programming of the Russian Academy of Sciences (ISP RAS)
 */


#include "common/sedna.h"

void print_version_and_copyright(const char *prog_name)
{
    const char* ver = SEDNA_VERSION;
    const char* build = SEDNA_BUILD;
    fprintf(stdout, "%s Version %s.%s\n", prog_name, ver, build);
    fprintf(stdout, "Copyright (C) 2004-2009 ISP RAS and others. All rights reserved.\n"); 
    fprintf(stdout, "See file COPYRIGHT provided with the distribution.\n");   
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sedna-0.6.0 vendor/sedna/kernel/common/version.c