* @brief This function will put string to the console. * * @param str is the string output to the console. */
| 340 | * @param str is the string output to the console. |
| 341 | */ |
| 342 | void 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. |