skalibs

Mirror/fork of https://skarnet.org/software/skalibs/
git clone https://ccx.te2000.cz/git/skalibs
Log | Files | Refs | README | LICENSE

uint64_scan.c (206B)


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