Missing float and double typedefs
This commit is contained in:
@@ -113,6 +113,22 @@ typedef char* malunal_str_t;
|
||||
*/
|
||||
typedef const char* malunal_cstr_t;
|
||||
|
||||
/**
|
||||
* @brief Our own definition of a single precision floting point number.
|
||||
* @details This is provided, like all of the types in this header, to meet
|
||||
* modern standards and to exist specifically to match how we name
|
||||
* many of our other types.
|
||||
*/
|
||||
typedef float malunal_single_t;
|
||||
|
||||
/**
|
||||
* @brief Our own definition of a double precision floting point number.
|
||||
* @details This is provided, like all of the types in this header, to meet
|
||||
* modern standards and to exist specifically to match how we name
|
||||
* many of our other types.
|
||||
*/
|
||||
typedef double malunal_double_t;
|
||||
|
||||
/**
|
||||
* @brief Our own definition of an 8-bit signed integer.
|
||||
* @details This is provided, like all of the types in this header, to meet
|
||||
|
||||
Reference in New Issue
Block a user