Gimp/plug-ins/script-fu/tinyscheme
Simon Budig 24f9ed8446 further simplifications.
2007-09-22  Simon Budig  <simon@gimp.org>

	* plug-ins/script-fu/tinyscheme/scheme.c: further simplifications.


svn path=/trunk/; revision=23614
2007-09-22 18:03:39 +00:00
..
BUILDING
CHANGES Minor changes to quiet the compiler. 2006-12-07 18:57:10 +00:00
COPYING
dynload.c
dynload.h
hack.txt
init.scm The changes below (except for init.scm) were found during the work of 2006-10-12 20:31:33 +00: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 scripts/tiny-fu.init tiny-fu/ts-wrapper.c tinyscheme/Manual.txt Updates to 2006-10-05 17:39:54 +00:00
MiniSCHEMETribute.txt
opdefines.h Use vectors instead of the non-standard array structure. Also made some 2006-11-09 23:03:55 +00:00
README tinyscheme/README 2005-03-17 20:10:42 +00:00
scheme-private.h quick fix: raise the cell segment size as well as the number of possible 2007-09-05 23:18:10 +00:00
scheme.c further simplifications. 2007-09-22 18:03:39 +00:00
scheme.h plug-ins/script-fu/tinyscheme/scheme.[ch] make it possible for foreign 2007-08-31 19:35:26 +00: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.