replace u_xxxx style, defined <sys/types.h>

replace:
	u_char -> unsigned char
	u_short -> unsigned short
	u_int -> unsigned int
	u_long (not used)

include <sys/types.h> is kept.

dicttool.h:
	fix include guard DICTTOLL -> DICTTOOL

addelcmn.c:unsigned int addel_arg()
deldic.c:unsigned int deldic()
	change u_short err -> unsigned int err (used for return value)

Signed-off-by: SASANO Takayoshi <uaa@uaa.org.uk>
This commit is contained in:
SASANO Takayoshi 2023-12-10 16:28:22 +09:00 committed by Masanori Ogino
commit a9a6c86f12
99 changed files with 1711 additions and 1709 deletions

View file

@ -43,7 +43,7 @@
#include "kanakan.h"
static int
cnjstrcmp (u_char *yptr, u_char *cnjp, int *saml)
cnjstrcmp (unsigned char *yptr, unsigned char *cnjp, int *saml)
{
int asklen;
int nkrlen;
@ -114,13 +114,13 @@ cnvrow (JREC *rec, TypeCnct row)
int
setconj (TypeGram hinsi, JREC *jrec, CREC *crec)
{
u_char *yptr;
unsigned char *yptr;
int cmp;
TypeCnct right;
int saml;
int ofslen;
int count = 0;
u_char *cnj;
unsigned char *cnj;
if ((cnj = Conjadr(hinsi)) != NULL) {
saml = ofslen = 0;
@ -146,7 +146,7 @@ setconj (TypeGram hinsi, JREC *jrec, CREC *crec)
if (isdpnd(*(yptr + saml))) continue;
if ((right = cnvrow(jrec, (TypeCnct)CnjRight(cnj))) != '\0') {
crec -> len = (u_char)(ofslen + saml);
crec -> len = (unsigned char)(ofslen + saml);
crec -> right = right;
count++;
crec++;