fix spelling errors

This commit is contained in:
Caolán McNamara 2010-03-04 13:19:21 +00:00
parent e39ae52d7d
commit ea3a92e522
2 changed files with 4 additions and 4 deletions

View File

@ -83,7 +83,7 @@ void enmkallsmall(char * d, const char * p, const char * encoding)
}
/* convert null terminated string to have intial capital using encoding */
/* convert null terminated string to have initial capital using encoding */
void enmkinitcap(char * d, const char * p, const char * encoding)
{
struct cs_info * csconv = get_current_cs(encoding);
@ -112,7 +112,7 @@ void mkallsmall(char * p, const struct cs_info * csconv)
}
/* convert null terminated string to have intial capital */
/* convert null terminated string to have initial capital */
void mkinitcap(char * p, const struct cs_info * csconv)
{
if (*p != '\0') *p = csconv[((unsigned char)*p)].cupper;

View File

@ -45,7 +45,7 @@ void enmkallcap(char * d, const char * p, const char * encoding);
/* convert null terminated string to all little using encoding */
void enmkallsmall(char * d, const char * p, const char * encoding);
/* convert null terminated string to have intial capital using encoding */
/* convert null terminated string to have initial capital using encoding */
void enmkinitcap(char * d, const char * p, const char * encoding);
/* convert null terminated string to all caps */
@ -54,7 +54,7 @@ void mkallcap(char * p, const struct cs_info * csconv);
/* convert null terminated string to all little */
void mkallsmall(char * p, const struct cs_info * csconv);
/* convert null terminated string to have intial capital */
/* convert null terminated string to have initial capital */
void mkinitcap(char * p, const struct cs_info * csconv);