skalibs

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

int64_scan.c (202B)


      1 /* ISC license. */
      2 
      3 #include <skalibs/uint64.h>
      4 #include "fmtscan-internal.h"
      5 
      6 size_t int64_scan_base (char const *s, int64_t *d, uint8_t base)
      7 {
      8   return int64_scan_base_max(s, d, base, INT64_MAX) ;
      9 }