forked from platformio/platformio-core
14 lines
101 B
Plaintext
14 lines
101 B
Plaintext
char buf[5];
|
|
|
|
void setup() {
|
|
fooFunc();
|
|
}
|
|
|
|
void loop() {
|
|
|
|
}
|
|
|
|
char* fooFunc() {
|
|
return buf;
|
|
}
|