We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd8d374 commit df58fc9Copy full SHA for df58fc9
1 file changed
src/core/include/utils/inttypes.h
@@ -41,6 +41,21 @@
41
#include <cstdint>
42
#include <iosfwd>
43
44
+/**
45
+ * @brief Type used for representing unsigned 8-bit integers.
46
+ */
47
+typedef uint8_t uschar;
48
+
49
50
+ * @brief Type used for representing unsigned 16-bit short integers.
51
52
+typedef uint16_t usshort;
53
54
55
+ * @brief Type used for representing unsigned 32-bit integers.
56
57
+typedef uint32_t usint;
58
59
typedef uint64_t PlaintextModulus;
60
61
/**
0 commit comments