Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Misc.cpp
- Committer:
- khaiminhvn
- Date:
- 2021-03-12
- Revision:
- 0:d30c0ebaea12
- Child:
- 1:a46794267da5
File content as of revision 0:d30c0ebaea12:
#include "Misc.h"
//itos
string Misc::itos(int n){
string tmp;
char buffer[16];
sprintf(buffer,"%d",n);
tmp = buffer;
return tmp;
}