MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / rt_kputs

Function rt_kputs

src/kservice.c:342–350  ·  view source on GitHub ↗

* @brief This function will put string to the console. * * @param str is the string output to the console. */

Source from the content-addressed store, hash-verified

340 * @param str is the string output to the console.
341 */
342void rt_kputs(const char *str)
343{
344 if (!str)
345 {
346 return;
347 }
348
349 _kputs(str, rt_strlen(str));
350}
351
352/**
353 * @brief This function will print a formatted string on system console.

Callers 15

_dtb_node_printf_depthFunction · 0.85
dtb_node_get_dts_dumpFunction · 0.85
dtb_testFunction · 0.85
dts_put_depthFunction · 0.85
ofw_node_dump_dtsFunction · 0.85
rt_ofw_node_dump_dtsFunction · 0.85
rt_fdt_earlycon_kickFunction · 0.85
list_irqFunction · 0.85
_logging_progressFunction · 0.85
_logging_progressFunction · 0.85

Calls 2

_kputsFunction · 0.85
rt_strlenFunction · 0.85

Tested by 1

dtb_testFunction · 0.68