1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-17 11:00:59 -05:00

Some extra int64 functions.

[originally from svn r6778]
This commit is contained in:
Owen Dunn
2006-08-05 13:48:53 +00:00
parent 9ca35dd9e5
commit 3d522cfd08
2 changed files with 56 additions and 0 deletions

View File

@ -15,5 +15,10 @@ uint64 uint64_make(unsigned long hi, unsigned long lo);
uint64 uint64_add(uint64 x, uint64 y);
uint64 uint64_add32(uint64 x, unsigned long y);
int uint64_compare(uint64 x, uint64 y);
uint64 uint64_subtract(uint64 x, uint64 y);
double uint64_to_double(uint64 x);
uint64 uint64_shift_right(uint64 x, int shift);
uint64 uint64_shift_left(uint64 x, int shift);
uint64 uint64_from_decimal(char *str);
#endif