Quantcast
Channel: C
Viewing all articles
Browse latest Browse all 46

ATOI and ITOA Custom Implementations

$
0
0
I wanted to make a remake of my previous BAD versions of these 2 functions.
I think they are working great now, and they're portable the same as the originals from STD library.

ATOI
Code:
/**

// By 85
// boyscout_arg@hotmail.com
// etalking.com.ar
// David Riedel
// 2013

**/

#pragma warning (disable:4305)
#pragma warning (disable:4309)
#pragma warning (disable:4244)
#pragma warning (disable:4018)
#include <windows.h>
#include <stdlib.h>
#include <stdio.h>

/////

int mi_atoi(const char*...
ATOI and ITOA Custom Implementations

Viewing all articles
Browse latest Browse all 46

Trending Articles