Subversion Repositories RepoView

Rev

Rev 1 | Rev 28 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1 Rev 3
Line 1... Line 1...
1
/* $Id: version.c 1 2024-08-20 19:18:25Z nishi $ */
1
/* $Id: version.c 3 2024-08-20 21:05:24Z nishi $ */
2
 
2
 
3
#include "rv_version.h"
3
#include "rv_version.h"
4
 
4
 
5
const char* rv_version = "1.00";
5
const char* rv_version = "1.00";
6
 
6
 
7
const char* rv_get_version(void){
7
const char* rv_get_version(void) { return rv_version; }
8
	return rv_version;
-
 
9
}
-