自己实现C语言atoi函数和线程安全版的itoa函数
C语言atoi函数是用来将字符串转化为int型整数的,itoa功能相反。下面是我自己实现的这两个函数,均为线程安全的。代码如下:#include <stdio.h>#include <stdlib.h>#include <string.h>#include <malloc.h>#include <iostream>#include <cmath>using namespace std;//
原创
2016-02-18 15:48:23 ·
2498 阅读 ·
0 评论