Reformatted

FossilOrigin-Name: 0ee8c4d6c81557eea2f8bd3ea9c1a3646591661180b0b175f8ba48e4e7a94d7b
This commit is contained in:
7u83@mail.ru 2018-02-23 08:06:22 +00:00
parent 2ab86e8fc6
commit e0f6aadace
1 changed files with 20 additions and 19 deletions

View File

@ -17,7 +17,7 @@
*/
/**
*@file
*@brief prototypes for format-functions
*@brief Prototypes of cw_format-functions
*@defgroup FORMAT FORMAT
*@{
*/
@ -32,7 +32,8 @@ extern int format_hex_bytes(char *dst, const char *format, const char *delim,
const uint8_t * src, int len);
static inline char *format_s_hex_bytes(char *dst, const char *format, const char *delim,
const uint8_t * src, int len){
const uint8_t * src, int len)
{
format_hex_bytes(dst, format, delim, src, len);
return dst;
}