mirror of
https://github.com/platformio/platformio-core.git
synced 2026-02-04 14:15:17 +01:00
14 lines
101 B
Plaintext
14 lines
101 B
Plaintext
char buf[5];
|
|
|
|
void setup() {
|
|
fooFunc();
|
|
}
|
|
|
|
void loop() {
|
|
|
|
}
|
|
|
|
char* fooFunc() {
|
|
return buf;
|
|
}
|