1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-10-13 16:23:53 +00:00

Update documentation

This commit is contained in:
Karol Stasiak 2019-09-04 01:22:40 +02:00
parent e449b67a4a
commit f18135ee7f
2 changed files with 6 additions and 0 deletions

View File

@ -4,6 +4,10 @@
The `string` module automatically imports the `err` module. The `string` module automatically imports the `err` module.
All the functions are designed to work for the strings in the default encoding.
If passed a string in an encoding that has a different null terminator,
then the results are undefined and the program will most likely crash or freeze.
#### `byte strzlen(pointer str)` #### `byte strzlen(pointer str)`
Calculates the length of a null-terminated string. Calculates the length of a null-terminated string.

View File

@ -23,6 +23,7 @@ nav:
- Syntax: lang/syntax.md - Syntax: lang/syntax.md
- Types: lang/types.md - Types: lang/types.md
- Literals: lang/literals.md - Literals: lang/literals.md
- Predefined constants: lang/predefined_constants.md
- Text encodings: lang/text.md - Text encodings: lang/text.md
- Operators: lang/operators.md - Operators: lang/operators.md
- Functions: lang/functions.md - Functions: lang/functions.md
@ -35,6 +36,7 @@ nav:
- stdio module: stdlib/stdio.md - stdio module: stdlib/stdio.md
- keyboard, err, random: stdlib/other.md - keyboard, err, random: stdlib/other.md
- joy, mouse, x_coord: stdlib/input.md - joy, mouse, x_coord: stdlib/input.md
- encconv module: stdlib/encconv.md
- Platform-dependent modules: stdlib/frequent.md - Platform-dependent modules: stdlib/frequent.md
- cbm_file module: stdlib/cbm_file.md - cbm_file module: stdlib/cbm_file.md
- C64-only modules: stdlib/c64.md - C64-only modules: stdlib/c64.md