add function sf_version

master
YuQing 2026-06-23 15:41:54 +08:00
parent 5b7347a0fe
commit 7782eb06ca
2 changed files with 60 additions and 0 deletions

23
src/sf_version.c Normal file
View File

@ -0,0 +1,23 @@
/*
* Copyright (c) 2026 YuQing <384681@qq.com>
*
* This program is free software: you can use, redistribute, and/or modify
* it under the terms of the Lesser GNU General Public License, version 3
* or later ("LGPL"), as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE.
*
* You should have received a copy of the Lesser GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "sf_version.h"
void sf_version(Version *version)
{
version->major = SF_MAJOR_VERSION;
version->minor = SF_MINOR_VERSION;
version->patch = SF_PATCH_VERSION;
}

37
src/sf_version.h Normal file
View File

@ -0,0 +1,37 @@
/*
* Copyright (c) 2026 YuQing <384681@qq.com>
*
* This program is free software: you can use, redistribute, and/or modify
* it under the terms of the Lesser GNU General Public License, version 3
* or later ("LGPL"), as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE.
*
* You should have received a copy of the Lesser GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
//sf_version.h
#ifndef _SF_VERSION_H
#define _SF_VERSION_H
#include "fastcommon/common_define.h"
#define SF_MAJOR_VERSION 1
#define SF_MINOR_VERSION 2
#define SF_PATCH_VERSION 13
#ifdef __cplusplus
extern "C" {
#endif
void sf_version(Version *version);
#ifdef __cplusplus
}
#endif
#endif