arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
74 Bytes
#include <stdlib.h>
double atof(const char *s)
{
return strtod(s, 0);
}