mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-01 00:28:18 +00:00
18 lines
141 B
Plaintext
18 lines
141 B
Plaintext
|
// prototype
|
||
|
@@
|
||
|
identifier fn;
|
||
|
type t;
|
||
|
@@
|
||
|
- t fn();
|
||
|
+ t fn(void);
|
||
|
|
||
|
// implementation
|
||
|
@@
|
||
|
identifier fn;
|
||
|
type t;
|
||
|
@@
|
||
|
- fn()
|
||
|
+ fn(void)
|
||
|
{ ... }
|
||
|
|