arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
65 Bytes
#include <stdlib.h>
long labs(long a)
{
return a>0 ? a : -a;
}