Files
platformio-core/tests/ino2cpp/multifiles/foo.pde
T

13 lines
97 B
Plaintext
Raw Normal View History

2016-08-31 01:26:08 +03:00
char buf[5];
2016-08-31 00:16:23 +03:00
void setup() {
fooFunc();
}
void loop() {
}
char* fooFunc() {
2016-08-31 01:26:08 +03:00
return buf;
2016-08-31 00:16:23 +03:00
}