1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00
putty-source/charset
Simon Tatham 5935c68288 Update source file names in comments and docs.
Correcting a source file name in the docs just now reminded me that
I've seen a lot of outdated source file names elsewhere in the code,
due to all the reorganisation since we moved to cmake. Here's a giant
pass of trying to make them all accurate again.
2022-01-22 15:51:31 +00:00
..
charset.h Whitespace rationalisation of entire code base. 2019-09-08 20:29:21 +01:00
CMakeLists.txt Add missing dependencies on generated source files. 2021-04-18 17:01:50 +01:00
enum.c Whitespace rationalisation of entire code base. 2019-09-08 20:29:21 +01:00
fromucs.c Whitespace rationalisation of entire code base. 2019-09-08 20:29:21 +01:00
internal.h Whitespace rationalisation of entire code base. 2019-09-08 20:29:21 +01:00
localenc.c Update source file names in comments and docs. 2022-01-22 15:51:31 +00:00
macenc.c Whitespace rationalisation of entire code base. 2019-09-08 20:29:21 +01:00
mimeenc.c Whitespace rationalisation of entire code base. 2019-09-08 20:29:21 +01:00
README Update status of this library wrt other variants. 2005-12-18 17:05:21 +00:00
sbcs.c Whitespace rationalisation of entire code base. 2019-09-08 20:29:21 +01:00
sbcs.dat Whitespace rationalisation of entire code base. 2019-09-08 20:29:21 +01:00
sbcsgen.pl Replace mkfiles.pl with a CMake build system. 2021-04-17 13:53:02 +01:00
slookup.c Whitespace rationalisation of entire code base. 2019-09-08 20:29:21 +01:00
toucs.c Whitespace rationalisation of entire code base. 2019-09-08 20:29:21 +01:00
utf8.c Whitespace rationalisation of entire code base. 2019-09-08 20:29:21 +01:00
xenc.c Whitespace rationalisation of entire code base. 2019-09-08 20:29:21 +01:00

This subdirectory contains a general character-set conversion
library, used in the Unix port of PuTTY, and available for use in
other ports if it should happen to be useful.

This is a variant of a library that's currently used in some other
programs such as Timber and Halibut. At some future date, we would
like to merge the two libraries, so that all programs use the same
libcharset.

It is therefore a _strong_ design goal that this library should remain
perfectly general, and not tied to particulars of PuTTY. It must not
reference any code outside its own subdirectory; it should not have
PuTTY-specific helper routines added to it unless they can be
documented in a general manner which might make them useful in other
circumstances as well.