From 46b6fb73529e79de5452e9d25e26a7c8b83bd79f Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sat, 14 May 2011 17:54:42 +0000 Subject: Make character engine (-Tascii, -Tpdf, -Tps) ready for Unicode: make buffer consist of type "int". This will take more work (especially in encode and friends), but this is a strong start. This commit also consists of some harmless lint fixes. --- term.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'term.h') diff --git a/term.h b/term.h index c1c9c457..f2b3db3d 100644 --- a/term.h +++ b/term.h @@ -1,4 +1,4 @@ -/* $Id: term.h,v 1.80 2011/04/29 22:18:12 kristaps Exp $ */ +/* $Id: term.h,v 1.81 2011/05/14 17:54:42 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * @@ -103,7 +103,7 @@ struct termp { #define TERMP_ANPREC (1 << 13) /* See termp_an_pre(). */ #define TERMP_KEEP (1 << 14) /* Keep words together. */ #define TERMP_PREKEEP (1 << 15) /* ...starting with the next one. */ - char *buf; /* Output buffer. */ + int *buf; /* Output buffer. */ enum termenc enc; /* Type of encoding. */ struct mchars *symtab; /* Encoded-symbol table. */ enum termfont fontl; /* Last font set. */ @@ -111,12 +111,12 @@ struct termp { int fonti; /* Index of font stack. */ term_margin headf; /* invoked to print head */ term_margin footf; /* invoked to print foot */ - void (*letter)(struct termp *, char); + void (*letter)(struct termp *, int); void (*begin)(struct termp *); void (*end)(struct termp *); void (*endline)(struct termp *); void (*advance)(struct termp *, size_t); - size_t (*width)(const struct termp *, char); + size_t (*width)(const struct termp *, int); double (*hspan)(const struct termp *, const struct roffsu *); const void *argf; /* arg for headf/footf */ -- cgit v1.2.3