diff options
| author | Tyge Løvset <[email protected]> | 2021-05-18 15:40:18 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-05-18 15:40:18 +0200 |
| commit | 3dacda72505c4d9fdc70b8ee00788e2afed98a1d (patch) | |
| tree | e777838a66a4ae5ee196874b36fdf04ec0fcd9b5 | |
| parent | a8d94f4acea04681c89b46233f90bd8f4cee6ebf (diff) | |
| download | STC-modified-3dacda72505c4d9fdc70b8ee00788e2afed98a1d.tar.gz STC-modified-3dacda72505c4d9fdc70b8ee00788e2afed98a1d.zip | |
Update ccommon_api.md
Final cleanups, getting ready for V2.0 RC and freeze API.
| -rw-r--r-- | docs/ccommon_api.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ccommon_api.md b/docs/ccommon_api.md index eb7918b9..27bbf589 100644 --- a/docs/ccommon_api.md +++ b/docs/ccommon_api.md @@ -50,11 +50,11 @@ c_foreach (i, csset_x, it, csset_x_end(&set)) printf(" %d", *i.ref); ``` ### c_with, c_withbuffer, c_breakwith -General defer in block mechanics. **c_withbuffer** is special for buffers, uses stack memory if buf is up to 256 bytes, +General ***defer*** mechanics. **c_withbuffer** is special for buffers, uses stack memory if buf is up to 256 bytes, and heap memory otherwise. -***NB***: Use only **c_breakwith** to break out of the block if needed, never use **return**, **break**, -or **goto** inside a with-block. +***NB***: Use ***only*** **c_breakwith** to break out of the block if needed, ***never*** use `return`, `break`, +or `goto` inside a **c_with**-block. | Usage | Description | |:-------------------------------|:-------------------------------------| |
