blob: b6afa8be69b2054e19615dbbc66f8fc25a69ec2a (
plain)
1
2
3
4
5
6
7
8
9
|
/* ISC license. */
#include <skalibs/uint64.h>
#include "fmtscan-internal.h"
size_t uint64_scan_base (char const *s, uint64_t *u, uint8_t base)
{
return uint64_scan_base_max(s, u, base, UINT64_MAX) ;
}
|