Missing float and double typedefs

This commit is contained in:
2026-09-04 06:45:14 -05:00
parent ed0764b9ea
commit 2725166ca4
+16
View File
@@ -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