X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fversion.c;h=71d9e54dd21c14f3f88742b55665f11d8b2802b0;hp=d93e326b13228f88b027766a4561ddd1bd4ef4fa;hb=8cb8947e3a7bff4dbf8f124871cb4905df1adce7;hpb=4c176312acdc3444c9afc820f76a393e64668e52 diff --git a/src/version.c b/src/version.c index d93e326..71d9e54 100644 --- a/src/version.c +++ b/src/version.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 1995-2005, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) Index Data * See the file LICENSE for details. - * - * $Id: version.c,v 1.3 2005-01-15 19:47:14 adam Exp $ */ /** @@ -10,10 +8,6 @@ * \brief Implements YAZ version utilities. */ -/** - * \mainpage The YAZ Toolkit. - */ - #if HAVE_CONFIG_H #include #endif @@ -21,11 +15,20 @@ #include #include -unsigned long yaz_version(char *version_str, char *sys_str) +unsigned long yaz_version(char *version_str, char *sha1_str) { if (version_str) strcpy(version_str, YAZ_VERSION); - if (sys_str) - strcpy(sys_str, ""); + if (sha1_str) + strcpy(sha1_str, YAZ_VERSION_SHA1); return YAZ_VERSIONL; } +/* + * Local variables: + * c-basic-offset: 4 + * c-file-style: "Stroustrup" + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +