summaryrefslogtreecommitdiff
path: root/support/dktools/libdk4maiowh.dox
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /support/dktools/libdk4maiowh.dox
Initial commit
Diffstat (limited to 'support/dktools/libdk4maiowh.dox')
-rw-r--r--support/dktools/libdk4maiowh.dox36
1 files changed, 36 insertions, 0 deletions
diff --git a/support/dktools/libdk4maiowh.dox b/support/dktools/libdk4maiowh.dox
new file mode 100644
index 0000000000..28d11b196e
--- /dev/null
+++ b/support/dktools/libdk4maiowh.dox
@@ -0,0 +1,36 @@
+/** @page libdk4maiowh libdk4maiowh
+
+@section secinputwh Convert text to number
+
+Retrieve integer number from wchar_t text in hexadecimal notation.
+
+Data type | Header | Function
+:-------: | :----: | :-------
+char | dk4maiwhic.h | dk4ma_input_wc_hex_char()
+unsigned char | dk4maiwhuc.h | dk4ma_input_wc_hex_uchar()
+short | dk4maiwhis.h | dk4ma_input_wc_hex_short()
+unsigned short | dk4maiwhus.h | dk4ma_input_wc_hex_ushort()
+int | dk4maiwhii.h | dk4ma_input_wc_hex_int()
+unsigned | dk4maiwhui.h | dk4ma_input_wc_hex_uint()
+long | dk4maiwhil.h | dk4ma_input_wc_hex_long()
+unsigned long | dk4maiwhul.h | dk4ma_input_wc_hex_ulong()
+long long | dk4maiwhli.h | dk4ma_input_wc_hex_ll()
+unsigned long long | dk4maiwhlu.h | dk4ma_input_wc_hex_ull()
+intmax_t | dk4maiwhmi.h | dk4ma_input_wc_hex_intmax_t()
+uintmax_t | dk4maiwhmu.h | dk4ma_input_wc_hex_uintmax_t()
+dk4_im_t | dk4maiwhdi.h | dk4ma_input_wc_hex_dk4_im_t()
+dk4_um_t | dk4maiwhdu.h | dk4ma_input_wc_hex_dk4_um_t()
+
+@section secioutputwh Convert number to text
+
+Convert integer number to wchar_t text in hexadecimal notation.
+
+Data type | Header | Function
+:-------: | :----: | :-------
+dk4_im_t | dk4maowh.h | dk4ma_write_wc_hex_unsigned()
+dk4_um_t | dk4maowh.h | dk4ma_write_wc_hex_signed()
+
+You can cast all other signed integer values to dk4_im_t and all other
+unsigned integer values to dk4_um_t without loss.
+
+*/