diff options
| author | Simon Tatham <anakin@pobox.com> | 2004-05-23 13:20:27 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2004-05-23 13:20:27 +0000 |
| commit | 2c2cc2260f9302ed2a32d5cd6116d7e7a2f097cf (patch) | |
| tree | 6407423dfa55afc94afd52b6e29e9690a6a88a48 /halibut.h | |
| parent | 6e759041825952be19dd50af7db88a80d84feceb (diff) | |
| download | halibut-2c2cc2260f9302ed2a32d5cd6116d7e7a2f097cf.zip halibut-2c2cc2260f9302ed2a32d5cd6116d7e7a2f097cf.tar.gz halibut-2c2cc2260f9302ed2a32d5cd6116d7e7a2f097cf.tar.bz2 halibut-2c2cc2260f9302ed2a32d5cd6116d7e7a2f097cf.tar.xz | |
Character-set-isation and configurability in the WinHelp backend.
Newly configurable things are: bullet and quote characters as usual,
the ": " that goes between a section number and its title, the "."
coming after numbered-list item numbers, and the text "Title page"
that appears at the top of the .cnt file.
[originally from svn r4248]
Diffstat (limited to '')
| -rw-r--r-- | halibut.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -282,6 +282,7 @@ wchar_t *ufroma_locale_dup(char const *s); int ustrlen(wchar_t const *s); wchar_t *uadv(wchar_t *s); wchar_t *ustrcpy(wchar_t *dest, wchar_t const *source); +wchar_t *ustrncpy(wchar_t *dest, wchar_t const *source, int n); wchar_t utolower(wchar_t); int uisalpha(wchar_t); int ustrcmp(wchar_t *lhs, wchar_t *rhs); |