본문 바로가기
C 언어

atoll

by SpeeDr00t 2016. 7. 9.
반응형

long long

atoll(const char *str)

#include <stdlib.h>

long long
atoll(const char *str)
{
	return(strtoll(str, (char **)NULL, 10));
}
반응형

'C 언어' 카테고리의 다른 글

atol  (0) 2016.07.09
strtoll  (0) 2016.07.09
calloc  (0) 2016.07.09
getenv  (0) 2016.07.09
exit  (0) 2016.07.09