summaryrefslogtreecommitdiff
path: root/src/libstddjb/strn_fmt.c
blob: d8cf58f5faf80629a0351c3694ab7f57575ee339 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ISC license. */

#include <sys/types.h>
#include <skalibs/types.h>
#include <skalibs/fmtscan.h>

size_t strn_fmt (char *blah, char const *s, size_t len)
{
  char *d = blah ;
  size_t i ;
  for (i = 0 ; i < len ; i++)
    if ((s[i] >= 32) && ((unsigned char)s[i] < 127)) *d++ = s[i] ;
    else
    {
      *d++ = '\\' ;
      *d++ = '0' ;
      *d++ = 'x' ;
      if ((unsigned char)s[i] < 16) *d++ = '0' ;
      d += uint_xfmt(d, (unsigned char)s[i]) ;
    }
  return d - blah ;
}