On Saturday, May 18, 2002, at 01:56 PM, Thomas Kotzian wrote:
> How is the quickest way to find this symbol. - Or does someone know 
> which library has _strtoll

It's pretty easy to write, if you can't find it:

#include <stdio.h>

long long strtoll(const char *string)
{
long long temp;
sscanf(string,"%ll",&temp);

return temp;
}

--
Alexander Strange | iThink Software

TO ME, CLOWNS AREN'T FUNNY. In fact, they're kinda scary. I've wondered
where this started, and I think it goes back to the time I went to the
circus and a clown killed my dad.
                -- Jack Handley, The New Mexican, 1988.


_______________________________________________________________
Hundreds of nodes, one monster rendering program.
Now that's a super model! Visit http://clustering.foundries.sf.net/

_______________________________________________
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel

Reply via email to