diff options
| author | bozo.kopic <bozo@kopic.xyz> | 2022-08-02 01:20:12 +0200 |
|---|---|---|
| committer | bozo.kopic <bozo@kopic.xyz> | 2022-09-25 02:40:23 +0200 |
| commit | 288727f09a1b3458c268497d111349e608c3f9fa (patch) | |
| tree | d62565249fa3c7127856c65405752572fc41aca9 /docs/write.rst | |
Diffstat (limited to 'docs/write.rst')
| -rw-r--r-- | docs/write.rst | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/docs/write.rst b/docs/write.rst new file mode 100644 index 0000000..b90e2e1 --- /dev/null +++ b/docs/write.rst @@ -0,0 +1,27 @@ +Data writer +=========== + +Data writer enables serialization of data as string characters written +to output stream. Same encoding rules that apply to data reader also apply to +data writer. + +Additionally, data writer will provide informative representation of data +types which can not be parsed by data reader (`builtin function`, +`builtin syntax`, `function` and `syntax`). + + +Source code +----------- + +write.h +''''''' + +.. literalinclude:: ../src_c/write.h + :language: c + + +write.c +''''''' + +.. literalinclude:: ../src_c/write.c + :language: c |
