diff options
author | Guillem Jover <guillem@debian.org> | 2014-07-02 03:12:00 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-07-08 09:52:19 +0200 |
commit | 3c09d634b6aef7bbdbc75f38e3969f4b46b0ac0d (patch) | |
tree | f1484ae5f9f61480b08a25d06dcebf19f53c6d3b /apt-pkg/contrib/strutl.h | |
parent | 34984adbae646b922c4759849097f047461c4a60 (diff) |
Add new Base256ToNum long long overload function
Diffstat (limited to 'apt-pkg/contrib/strutl.h')
-rw-r--r-- | apt-pkg/contrib/strutl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apt-pkg/contrib/strutl.h b/apt-pkg/contrib/strutl.h index 185cdc3fc..5733fd6e2 100644 --- a/apt-pkg/contrib/strutl.h +++ b/apt-pkg/contrib/strutl.h @@ -72,6 +72,7 @@ bool ReadMessages(int Fd, std::vector<std::string> &List); bool StrToNum(const char *Str,unsigned long &Res,unsigned Len,unsigned Base = 0); bool StrToNum(const char *Str,unsigned long long &Res,unsigned Len,unsigned Base = 0); bool Base256ToNum(const char *Str,unsigned long &Res,unsigned int Len); +bool Base256ToNum(const char *Str,unsigned long long &Res,unsigned int Len); bool Hex2Num(const std::string &Str,unsigned char *Num,unsigned int Length); // input changing string split |