mirror of
https://github.com/platformio/platformio-core.git
synced 2025-10-18 00:35:22 +02:00
22 lines
211 B
C++
22 lines
211 B
C++
struct MyItem {
|
|
byte foo[50];
|
|
int bar;
|
|
};
|
|
|
|
void setup() {
|
|
struct MyItem item1;
|
|
myFunction(&item1);
|
|
|
|
|
|
}
|
|
|
|
#warning "Line number is 13"
|
|
|
|
void loop() {
|
|
|
|
}
|
|
|
|
void myFunction(struct MyItem *item) {
|
|
|
|
}
|