This is used for sending Data to receiving mDot

Dependencies:   libmDot-dev-mbed5-deprecated ISL29011

Fork of mdot-examples by 3mdeb

examples/inc/itoa.h

Committer:
SDesign2018
Date:
2017-12-01
Revision:
5:c9ab5062cfc3

File content as of revision 5:c9ab5062cfc3:

#ifndef __ITOA_H
#define __ITOA_H

#include <string.h>

char* itoa(int num, char* str, int base);

void reverse(char *s);

#endif