[259] | 1 | ////////////////////////////////////////////////////////////////////////////////// |
---|
| 2 | // File : stdlib.c |
---|
| 3 | // Date : 05/12/2013 |
---|
| 4 | // Author : Clément DEVIGNE |
---|
| 5 | // Copyright (c) UPMC-LIP6 |
---|
| 6 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 7 | |
---|
[271] | 8 | #include <stdlib.h> |
---|
| 9 | |
---|
[259] | 10 | /////////////////////////////////////////////////////////////////////////////////// |
---|
[382] | 11 | int atoi(char *str) |
---|
[259] | 12 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 13 | { |
---|
| 14 | int res = 0; // Initialize result |
---|
| 15 | int sign = 1; // Initialize sign as positive |
---|
| 16 | int i = 0; // Initialize index of first digit |
---|
| 17 | |
---|
| 18 | if (str[0] == '-') //If number is negative, then update sign |
---|
| 19 | { |
---|
| 20 | sign = -1; |
---|
| 21 | i++; // Also update index of first digit |
---|
| 22 | } |
---|
| 23 | |
---|
| 24 | for (; str[i] != '\0'; ++i) // Iterate through all digits and update the result |
---|
| 25 | { |
---|
| 26 | res = res*10 + str[i] - '0'; |
---|
| 27 | } |
---|
| 28 | |
---|
| 29 | // Return result with sign |
---|
| 30 | return sign*res; |
---|
| 31 | } |
---|
| 32 | |
---|
[271] | 33 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
[382] | 34 | void * memcpy(void *_dst, const void * _src, unsigned int size) |
---|
[271] | 35 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
[352] | 36 | { |
---|
[271] | 37 | unsigned int * dst = _dst; |
---|
| 38 | const unsigned int * src = _src; |
---|
| 39 | if (!((unsigned int) dst & 3) && !((unsigned int) src & 3) ) |
---|
[352] | 40 | { |
---|
| 41 | while (size > 3) |
---|
| 42 | { |
---|
[271] | 43 | *dst++ = *src++; |
---|
| 44 | size -= 4; |
---|
| 45 | } |
---|
[352] | 46 | } |
---|
[271] | 47 | |
---|
| 48 | unsigned char *cdst = (unsigned char*)dst; |
---|
| 49 | unsigned char *csrc = (unsigned char*)src; |
---|
| 50 | |
---|
[352] | 51 | while (size--) |
---|
| 52 | { |
---|
[271] | 53 | *cdst++ = *csrc++; |
---|
| 54 | } |
---|
| 55 | return _dst; |
---|
| 56 | } |
---|
| 57 | |
---|
| 58 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
[382] | 59 | inline void * memset(void * dst, int s, unsigned int size) |
---|
[271] | 60 | //////////////////////////////////////////////////////////////////////////////////////// |
---|
[352] | 61 | { |
---|
[271] | 62 | char * a = (char *) dst; |
---|
[382] | 63 | while (size--) |
---|
[352] | 64 | { |
---|
[271] | 65 | *a++ = (char)s; |
---|
| 66 | } |
---|
| 67 | return dst; |
---|
| 68 | } |
---|
| 69 | |
---|
[259] | 70 | // Local Variables: |
---|
| 71 | // tab-width: 4 |
---|
| 72 | // c-basic-offset: 4 |
---|
| 73 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
| 74 | // indent-tabs-mode: nil |
---|
| 75 | // End: |
---|
| 76 | // vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|