/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to src/SimpleTypeSystem.h

  • Committer: Gustav Hartvigsson
  • Date: 2013-09-05 22:40:17 UTC
  • mto: (5.2.3 simple_type_system_SMap)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: gustav.hartvigsson@gmail.com-20130905224017-garcgl5h866egppw
* Started work on making the code more prasable by DoxyGen.
* Fixed spelling errors in documentation

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
 
2
/*
 
3
    (C) Gustav Hartvigsson, 2013.
 
4
    
 
5
    This program is free software: you can redistribute it and/or modify
 
6
    it under the terms of the GNU Lesser General Public License as
 
7
    published by the Free Software Foundation, either version 3 of the
 
8
    License.
 
9
 
 
10
    This program is distributed in the hope that it will be useful,
 
11
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
    GNU General Public License for more details.
 
14
 
 
15
    You should have received a copy of the GNU General Public License
 
16
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
*/
 
18
 
 
19
/** @file */
 
20
 
2
21
#ifndef __H_SIMPLE_TYPE_SYSTEM__
3
22
#define __H_SIMPLE_TYPE_SYSTEM__
4
23
 
11
30
#include "Error.h"
12
31
#include "Func.h"
13
32
 
 
33
/**
 
34
 * Returns a string representing the current version.
 
35
 */
14
36
char * s_get_version_string ();
 
37
 
 
38
/**
 
39
 * Returns the Major version as on int.
 
40
 */
15
41
int s_get_version_major ();
 
42
 
 
43
/**
 
44
 * Returns the Minor version as on int.
 
45
 */
16
46
int s_get_version_minor ();
 
47
 
 
48
/**
 
49
 * Returns the Patch version as on int.
 
50
 */
17
51
int s_get_version_patch ();
18
52
 
19
53
char * s_string_new (const char * s);