aboutsummaryrefslogtreecommitdiff
path: root/libc/src/stdio/printf_core/converter_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/stdio/printf_core/converter_utils.h')
-rw-r--r--libc/src/stdio/printf_core/converter_utils.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/src/stdio/printf_core/converter_utils.h b/libc/src/stdio/printf_core/converter_utils.h
index 54f0a87..948fe81 100644
--- a/libc/src/stdio/printf_core/converter_utils.h
+++ b/libc/src/stdio/printf_core/converter_utils.h
@@ -51,6 +51,9 @@ LIBC_INLINE uintmax_t apply_length_modifier(uintmax_t num, LengthModifier lm) {
return result; \
}
+// This is used to represent which direction the number should be rounded.
+enum class RoundDirection { Up, Down, Even };
+
} // namespace printf_core
} // namespace LIBC_NAMESPACE