You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/headers/ti/sprintf.rst
+15-14
Original file line number
Diff line number
Diff line change
@@ -12,36 +12,40 @@ The OS comes with an implementation of ANSI C89 `sprintf`, which can reduce the
12
12
boot_sprintf
13
13
------------
14
14
15
-
The following type specifiers are supported :code:`%s %c %d %i %u %o %x %X %p %n`, alongside the flags:code:`-+#0*` in addition to the space flag and minimum field width.
15
+
The following type specifiers are supported :code:`%s %c %d %i %u %o %x %X %p %n`. The minimum field width :code:`*`, precision :code:`.*`, alongside:code:`-+#0` and the space flag are also supported.
16
16
17
17
All length modifiers :code:`hh h l ll j z t L` and floating point specifiers :code:`%f %g %e %a` are **not** supported.
18
18
19
19
Additionally, each individual argument will write no more than 255 characters each. This means that any strings written with :code:`%s` will be truncated after 255 characters.
20
20
21
-
:code:`<ti/sprintf.h>` provides `boot_sprintf`, in addition to `boot_snprintf` and `boot_asprintf` as macros.
21
+
:code:`<ti/sprintf.h>` provides `boot_sprintf`, `boot_snprintf`, and `boot_asprintf`, in addition to `boot_vsprintf`, `boot_vsnprintf`, and `boot_vasprintf` which accept a `va_list`.
22
22
23
23
.. code-block:: c
24
24
25
25
int boot_sprintf(char *restrict buffer, const char *restrict format, ...)
26
+
int boot_vsprintf(char *restrict buffer, const char *restrict format, va_list args)
26
27
27
28
int boot_snprintf(char *restrict buffer, size_t count, const char *restrict format, ...)
29
+
int boot_vsnprintf(char *restrict buffer, size_t count, const char *restrict format, va_list args)
28
30
29
31
int boot_asprintf(char **restrict p_buffer, const char *restrict format, ...)
32
+
int boot_vasprintf(char **restrict p_buffer, const char *restrict format, va_list args)
30
33
31
-
Because the OS does not provide `vsprintf`, `boot_snprintf` and `boot_asprintf` are implemented as macros. This means that :code:`...` or :code:`__VA_ARGS__` will be evaluated twice when the macro is expanded. `sprintf` is traditionally "unsafe" because a maximum output length cannot be specified, which can cause buffer overflows. By writing to an unmapped memory address :code:`0xE40000`, `boot_sprintf` can safely write up to ~786000 bytes which can then be used to determine the length of the output.
34
+
`sprintf` is traditionally "unsafe" because a maximum output length cannot be specified, which can cause buffer overflows. By writing to an unmapped memory address :code:`0xE40000`, `boot_sprintf` can safely write up to ~786000 bytes which can then be used to determine the length of the output.
32
35
33
36
Replacing printf functions
34
37
--------------------------
35
38
36
-
To disable all other printf functions with `boot_sprintf`, `boot_snprintf`, and `boot_asprintf`, add the following line to the Makefile. More information :ref:`here <printf>`.
39
+
To replace all other printf functions with the `boot_sprintf` functions, add the following line to the Makefile. More information :ref:`here <printf>`.
37
40
38
41
.. code-block:: makefile
39
42
40
43
HAS_PRINTF = NO
41
44
42
-
.. warning::
45
+
boot_vsprintf
46
+
-------------
43
47
44
-
:code:`std::snprintf` and :code:`std::asprintf` will cause errors if :code:`HAS_PRINTF = NO`
48
+
Because the OS does not provide `vsprintf`, `boot_vsprintf` is implemented by counting the number of arguments in the format string, and then copying the arguments from `va_list` onto the stack so they can be passed into `boot_sprintf`.
45
49
46
50
boot_asprintf
47
51
-------------
@@ -68,14 +72,11 @@ The truncating behavior of C99 `snprintf` can be replicated with `boot_asprintf`
68
72
69
73
printf and fprintf
70
74
------------------
71
-
`printf` and `fprintf` can be replicated by using `boot_asprintf` and `fputs`
75
+
`printf` and `fprintf` can be replicated by using `fputs`
0 commit comments