Gimp/plug-ins/script-fu/tinyscheme
Jehan 2c6e21b1e7 plug-ins: fix another cast warning.
Fix again these warnings:
> cast from pointer to integer of different size
2019-09-23 10:50:33 +02:00
..
.gitignore
BUILDING
CHANGES Bug 795557 - Misc. typo fixes in source, comments and doxygen (pt3) 2018-04-25 23:49:06 +02:00
COPYING
dynload.c
dynload.h
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
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
meson.build Meson port. 2019-09-11 16:42:04 +02:00
MiniSCHEMETribute.txt Misc typo fixes in plug-ins/ 2019-08-13 11:50:51 -04:00
opdefines.h
README
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

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.