/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/defs.h

  • Committer: Gustav Hartvigsson
  • Date: 2015-10-01 10:46:50 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20151001104650-s6d8bphieu709ncs
* Started working on Threads
* Started working on Base[16,32,64] [en,de]coding functionality.
* added waring that suchar is not an unsigned char type.

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
 * @note
90
90
 * This is the way it is done in GLib, so it is done here too.
91
91
 */
92
 
typedef int sboolean;
 
92
typedef int32_t sboolean;
93
93
 
94
94
/** hash type  */
95
95
typedef size_t hash_t;
116
116
 *
117
117
 * To make the wide strings actually work as they should, even over network or
118
118
 * other communication we set this as the standard for the uchar.
 
119
 *
 
120
 * @warning This is not an unsigned char. If you need to store such small
 
121
 * values use #subyte 
119
122
 */
120
123
typedef char32_t suchar;
121
124