Skip to content
Snippets Groups Projects
Commit eacdcbad authored by Armin Luntzer's avatar Armin Luntzer
Browse files

rename x_printf to printk for more convenience

parent 1ab963b7
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@
#define PAD_RIGHT 0x1
#define PAD_ZERO 0x2
int x_printf(const char *format, ...);
int printk(const char *format, ...);
int x_sprintf(char *str, const char *format, ...);
......
......@@ -298,7 +298,7 @@ static int print(char **str, const char *format, va_list args )
*
*/
int x_printf(const char *format, ...)
int printk(const char *format, ...)
{
va_list args;
......@@ -306,6 +306,8 @@ int x_printf(const char *format, ...)
return print( 0, format, args );
}
/**
* @brief 'man sprintf' (mostly)
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment