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

  • Committer: Gustav Hartvigsson
  • Date: 2015-04-10 15:24:35 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20150410152435-uumooulvwmn02rxb
* Renamed DynamicArray to SDynamicArray.
* Renamed dynamic_array_*() functions to s_dynamic_array_*()
* Fixed indentation problem in Error.h and defs.h
* Removed dependency on stdbool.h
* Added sboolean
* Addad sconstpointer
* Reverted SMap back no not depending on SObject.

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
 * Holds the names of the string version of SErrorType.
80
80
 */
81
81
static const char *  SErrorTypeName[] __attribute__((unused)) = {
82
 
    "NONE",
83
 
    "INPUT/OUTPUT",
84
 
    "OVERFLOW",
85
 
    0x0,
86
 
    0x0,
87
 
    0x0,
88
 
    "OTHER",
89
 
    "NULL",
90
 
    0x0,
91
 
    0x0
92
 
  };
 
82
  "NONE",
 
83
  "INPUT/OUTPUT",
 
84
  "OVERFLOW",
 
85
  0x0,
 
86
  0x0,
 
87
  0x0,
 
88
  "OTHER",
 
89
  "NULL",
 
90
  0x0,
 
91
  0x0
 
92
};
93
93
 
94
94
 
95
95
/**