gimp/plug-ins/script-fu/tinyscheme
luz paz 6457394069 Issue #6446: Typo fixes. 2021-02-24 12:33:03 +01:00
..
.gitignore Added .gitignore files generated with git svn create-ignore. 2009-01-31 11:37:44 +00:00
BUILDING Fixing formatting of files and removed tabs. 2011-09-23 19:10:16 -04:00
CHANGES Issue #6446: Typo fixes. 2021-02-24 12:33:03 +01:00
COPYING
Makefile.am app, plug-ins, libgimp*: clean out all remaining trailing spaces/tabs. 2016-06-02 02:04:26 +02:00
Manual.txt Bug 795161 - Misc. typo fixes in source comments and doxygen 2018-04-18 21:06:57 +02:00
MiniSCHEMETribute.txt Misc typo fixes in plug-ins/ 2019-08-13 11:50:51 -04:00
README tinyscheme/README 2005-03-17 20:10:42 +00:00
dynload.c Eliminated compiler warnings (scheme.c). Fixed whitespace (dynload.c). 2009-09-01 21:52:11 -04:00
dynload.h Added extra files temporarily lost during the autoconf process. 2004-10-07 05:45:51 +00:00
hack.txt Misc typo fixes in plug-ins/ 2019-08-13 11:50:51 -04:00
init.scm Applied changes from SVN version 98 of official version of TinyScheme 2013-04-14 15:48:09 -04:00
meson.build Meson port. 2019-09-11 16:42:04 +02:00
opdefines.h R5RS compatability fix for string->number and number->string (SF bug #3399335) 2012-12-14 17:43:10 -05:00
scheme-private.h Make various limits configurable (from TinyScheme SVN r109) 2016-06-02 15:32:04 -04:00
scheme.c plug-ins: fix another cast warning. 2019-09-23 10:50:33 +02:00
scheme.h Applied changes from SVN version 95 of official version of TinyScheme 2013-04-07 12:58:21 -04:00

README

This directory contains a version of TinyScheme which has been modified
to support UTF-8 coded strings. The strings stored in a data cell are
expected to be in UTF-8 format. This allows the continued use of gchar
pointers to pass around the strings. Processing the strings will require
conversion to unicode at times depending on the specific operation that
needs to be done on the UTF-8 coded strings.

The string length value stored in a data cell is the length in bytes of that
string including the terminating NUL.

Routines that want a string length for a UTF-8 coded string will be passed
the number of characters and not the number of bytes. If the number of bytes
is needed, the normal call to strlen() will work.