1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- #ifndef NRF_FPRINTF_FORMAT_H__
- #define NRF_FPRINTF_FORMAT_H__
- #include <stdarg.h>
- #include "nrf_fprintf.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- void nrf_fprintf_fmt(nrf_fprintf_ctx_t * const p_ctx,
- char const * p_fmt,
- va_list * p_args);
- #ifdef __cplusplus
- }
- #endif
- #endif
|