mirror of
https://github.com/bluekitchen/btstack.git
synced 2024-12-29 09:26:08 +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)
|
|
{ ... }
|
|
|