/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: 2015-07-12 19:04:18 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20150712190418-yi9rfito5ovnf6dy
* Made the code more easy to read.

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
/**
67
67
 * Returns a string representing the current version.
68
68
 */
69
 
char * s_get_version_string ();
 
69
char *
 
70
s_get_version_string ();
70
71
 
71
72
/**
72
73
 * Returns the Major version as on int.
73
74
 */
74
 
int s_get_version_major ();
 
75
int
 
76
s_get_version_major ();
75
77
 
76
78
/**
77
79
 * Returns the Minor version as on int.
78
80
 */
79
 
int s_get_version_minor ();
 
81
int
 
82
s_get_version_minor ();
80
83
 
81
84
/**
82
85
 * Returns the Patch version as on int.
83
86
 */
84
 
int s_get_version_patch ();
 
87
int
 
88
s_get_version_patch ();
85
89
 
86
90
 
87
91
END_DECLS