|
From: Robert W. <rj...@ke...> - 2004-01-04 23:16:00
|
CVS commit by rjwalsh: Add missing atoll16 prototype. I use this in the watchpoint stuff. M +3 -0 vg_skin.h.base 1.7 --- valgrind/include/vg_skin.h.base #1.6:1.7 @@ -405,4 +405,7 @@ extern Long VG_(atoll) ( Char* str ); +/* Like atoll(), but converts a number of base 16 */ +extern Long VG_(atoll16) ( Char* str ); + /* Like atoll(), but converts a number of base 2..36 */ extern Long VG_(atoll36) ( UInt base, Char* str ); |