Move ino2cpp tests to the misc folder

This commit is contained in:
Ivan Kravets
2022-05-19 14:36:24 +03:00
parent 9da7c42be4
commit f4d9769450
9 changed files with 19 additions and 6 deletions
@@ -0,0 +1,4 @@
unsigned int barFunc () // my comment
{
return 0;
}
@@ -0,0 +1,13 @@
char buf[5];
void setup() {
fooFunc();
}
void loop() {
}
char* fooFunc() {
return buf;
}