forked from platformio/platformio-core
19 lines
180 B
C++
19 lines
180 B
C++
|
|
struct MyItem {
|
|
byte foo[50];
|
|
int bar;
|
|
};
|
|
|
|
void setup() {
|
|
struct MyItem item1;
|
|
myFunction(&item1);
|
|
}
|
|
|
|
void loop() {
|
|
|
|
}
|
|
|
|
void myFunction(struct MyItem *item) {
|
|
|
|
}
|