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

  • Committer: Gustav Hartvigsson
  • Date: 2021-11-11 11:33:24 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20211111113324-3go0vz4d3gy4pc1g
Small cleanup and use _Bool
* Made the macros in defs.h easier to read.
* Use _Bool instead of uint32_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
 * @note
47
47
 * This is the way it is done in GLib, so it is done here too.
48
48
 */
49
 
typedef int32_t sboolean;
 
49
typedef _Bool sboolean;
50
50
 
51
51
/** hash type  */
52
52
typedef size_t hash_t;