1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-28 04:38:00 +00:00

Fix various spelling, grammatical, and punctuation errors (#222)

This commit is contained in:
Nick Briggs
2021-01-13 23:08:35 -08:00
committed by GitHub
parent be9c0c30c4
commit ebc4a24d0b
46 changed files with 87 additions and 87 deletions

View File

@@ -52,12 +52,12 @@ int FatcharNStoEUC(unsigned char *ns_ptr, int ns_len, unsigned char *euc_ptr) {
ns += *ns_ptr++;
euc = ns_euc(ns);
if (euc / TABLESIZE) {
/* 16 bit charactor */
/* 16 bit character */
*euc_ptr++ = euc / TABLESIZE;
*euc_ptr++ = euc % TABLESIZE;
euc_len += 2;
} else {
/* ASCII charactor */
/* ASCII character */
*euc_ptr++ = euc % TABLESIZE;
++euc_len;
}
@@ -95,12 +95,12 @@ int ThincharNStoEUC(unsigned char *ns_ptr, int ns_len, unsigned char *euc_ptr) {
ns = *ns_ptr++;
euc = ns_euc(ns);
if (euc / TABLESIZE) {
/* 16 bit charactor */
/* 16 bit character */
*euc_ptr++ = euc / TABLESIZE;
*euc_ptr++ = euc % TABLESIZE;
euc_len += 2;
} else {
/* ASCII charactor */
/* ASCII character */
*euc_ptr++ = euc % TABLESIZE;
++euc_len;
}
@@ -133,7 +133,7 @@ int EUCtoFatcharNS(unsigned char *euc_ptr, unsigned char *ns_ptr) {
i = 0;
while (euc = *euc_ptr++) {
if (euc & EUCMASK) {
/* 16 bit charactor */
/* 16 bit character */
euc *= TABLESIZE;
euc += *euc_ptr++;
}
@@ -168,12 +168,12 @@ int EUCstrlen(char *euc_ptr) {
while (*euc_ptr)
if (*euc_ptr & EUCMASK) {
/* 16 bit charactor */
/* 16 bit character */
len += 2;
*euc_ptr++;
*euc_ptr++;
} else {
/* ASCII charactor */
/* ASCII character */
len++;
*euc_ptr++;
}