shell: internal api update: fprintf

Add z_ prefix to internal fprintf functions and macros.

Signed-off-by: Jakub Rzeszutko <jakub.rzeszutko@nordicsemi.no>
This commit is contained in:
Jakub Rzeszutko 2020-12-06 11:22:27 +01:00 committed by Carles Cufí
commit 460995c810
10 changed files with 70 additions and 82 deletions

View file

@ -11,7 +11,7 @@
int shell_log_backend_output_func(uint8_t *data, size_t length, void *ctx)
{
shell_print_stream(ctx, data, length);
z_shell_print_stream(ctx, data, length);
return length;
}