summaryrefslogtreecommitdiff
path: root/src/libstddjb/timestamp_fmt.c
blob: 78d2dc27db5d3e8a088afb23d2a6777afabb0d89 (plain)
1
2
3
4
5
6
7
8
9
/* ISC license. */

#include <skalibs/tai.h>

size_t timestamp_fmt (char *s, tain_t const *a)
{
  *s = '@' ;
  return 1 + tain_fmt(s+1, a) ;
}