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

#include <skalibs/tai.h>

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