Gimp/plug-ins/script-fu/tinyscheme
2014-10-29 21:09:13 +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 Applied changes from SVN version 98 of official version of TinyScheme 2013-04-14 15:48:09 -04:00
COPYING
dynload.c Eliminated compiler warnings (scheme.c). Fixed whitespace (dynload.c). 2009-09-01 21:52:11 -04:00
dynload.h
hack.txt Applied changes from SVN version 97 of official version of TinyScheme 2013-04-14 15:48:09 -04:00
init.scm Applied changes from SVN version 98 of official version of TinyScheme 2013-04-14 15:48:09 -04:00
Makefile.am plug-ins/script-fu/ftx/Makefile.am plug-ins/script-fu/re/Makefile.am 2006-11-23 21:55:35 +00:00
Manual.txt Applied changes from SVN version 98 of official version of TinyScheme 2013-04-14 15:48:09 -04:00
MiniSCHEMETribute.txt
opdefines.h R5RS compatability fix for string->number and number->string (SF bug #3399335) 2012-12-14 17:43:10 -05:00
README tinyscheme/README 2005-03-17 20:10:42 +00:00
scheme-private.h Optionally report error line (from SVN r63 of official TinyScheme) 2011-02-07 15:56:21 -05:00
scheme.c scheme: add missing breaks 2014-10-29 21:09:13 +01:00
scheme.h Applied changes from SVN version 95 of official version of TinyScheme 2013-04-07 12:58:21 -04:00

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.