Skip to content

Commit 74ac78f

Browse files
committed
Updated documentation for boot_sprintf
1 parent c1eec3f commit 74ac78f

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

docs/headers/ti/sprintf.rst

+15-14
Original file line numberDiff line numberDiff line change
@@ -12,36 +12,40 @@ The OS comes with an implementation of ANSI C89 `sprintf`, which can reduce the
1212
boot_sprintf
1313
------------
1414

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.
1616

1717
All length modifiers :code:`hh h l ll j z t L` and floating point specifiers :code:`%f %g %e %a` are **not** supported.
1818

1919
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.
2020

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`.
2222

2323
.. code-block:: c
2424
2525
int boot_sprintf(char *restrict buffer, const char *restrict format, ...)
26+
int boot_vsprintf(char *restrict buffer, const char *restrict format, va_list args)
2627
2728
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)
2830
2931
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)
3033
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.
3235

3336
Replacing printf functions
3437
--------------------------
3538

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>`.
3740

3841
.. code-block:: makefile
3942
4043
HAS_PRINTF = NO
4144
42-
.. warning::
45+
boot_vsprintf
46+
-------------
4347

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`.
4549

4650
boot_asprintf
4751
-------------
@@ -68,14 +72,11 @@ The truncating behavior of C99 `snprintf` can be replicated with `boot_asprintf`
6872
6973
printf and fprintf
7074
------------------
71-
`printf` and `fprintf` can be replicated by using `boot_asprintf` and `fputs`
75+
`printf` and `fprintf` can be replicated by using `fputs`
7276

7377
.. code-block:: c
7478
75-
char *output;
76-
boot_asprintf(&output, format, ...);
77-
if (output != NULL) {
78-
// fprintf(stdout, ...) == printf(...)
79-
fputs(stdout, output);
80-
free(output);
81-
}
79+
char output[50];
80+
boot_snprintf(output, format, ...);
81+
// fprintf(stdout, ...) == printf(...)
82+
fputs(stdout, output);

0 commit comments

Comments
 (0)