readme enhancements
This commit is contained in:
parent
b15d77da75
commit
4f881aa7c2
|
@ -448,13 +448,17 @@ Includes are supported however the level of support depends on the specific port
|
||||||
of PicoC on your platform. Linux/UNIX and Windows support #include fully.
|
of PicoC on your platform. Linux/UNIX and Windows support #include fully.
|
||||||
|
|
||||||
## Function declarations
|
## Function declarations
|
||||||
This style of function declaration is supported:
|
These styles of function declarations are supported:
|
||||||
|
|
||||||
```C
|
```C
|
||||||
int my_function(char param1, int param2, char *param3)
|
int my_function(char param1, int param2, char *param3)
|
||||||
{
|
{
|
||||||
...
|
...
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int my_function(char param1, int param2, char *param3) {
|
||||||
|
...
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
The old "K&R" form of function declaration is not supported.
|
The old "K&R" form of function declaration is not supported.
|
||||||
|
|
Loading…
Reference in a new issue