Docs update, externalized cvec_concat_cb, example mem-leak

This commit is contained in:
Olof hagsand 2023-08-15 20:20:44 +02:00
parent e4a7fe0b49
commit fc73493881
7 changed files with 11 additions and 6 deletions

View file

@ -64,7 +64,7 @@ In some cases, Clixon uses three-value returns as follows:
- `0` Invalid
- `-1` Fatal error
### Return values
### Return values and goto:s
Clixon uses goto:s only to get a single point of exit functions as follows:
```
@ -80,7 +80,7 @@ Clixon uses goto:s only to get a single point of exit functions as follows:
Notes:
1. Use only a single return statement in a function
2. Do not use of goto:s in other ways
2. Do not use goto:s in other ways
### Comments