readme enhancements

This commit is contained in:
Joseph Poirier 2015-06-16 12:00:28 -05:00
parent b15d77da75
commit 4f881aa7c2

View file

@ -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.