/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 libssts/SimpleTypeSystem.h

  • Committer: Gustav Hartvigsson
  • Date: 2016-01-30 21:23:29 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20160130212329-cjpxy0vn851li8f3
* added S_EXPERTED to public functions.
* renamed -  internal_s_box_set_err_on_missmatch () to _internal_s_box_set_err_on_missmatch ().
* Replaced some tabs with spaces.

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
/**
88
88
 * Returns a string representing the current version.
89
89
 */
 
90
S_EXPORTED
90
91
char *
91
92
s_get_version_string ();
92
93
 
93
94
/**
94
95
 * Returns the Major version as on int.
95
96
 */
 
97
S_EXPORTED
96
98
int
97
99
s_get_version_major ();
98
100
 
99
101
/**
100
102
 * Returns the Minor version as on int.
101
103
 */
 
104
S_EXPORTED
102
105
int
103
106
s_get_version_minor ();
104
107
 
105
108
/**
106
109
 * Returns the Patch version as on int.
107
110
 */
 
111
S_EXPORTED
108
112
int
109
113
s_get_version_patch ();
110
114