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:
2018-04-14
Revision:
31:79940947df2c
Parent:
5:c9ab5062cfc3

File content as of revision 31:79940947df2c:

#ifndef __ITOA_H
#define __ITOA_H

#include <string.h>

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

void reverse(char *s);

#endif