#include <string.h>
#include <ctype.h>

#include "extern.h"

chktitle()			/* タイトル文字列 最終バイトが漢字1バイト目であれば補正 */
					/* 90.11.30 */
	{	int ch;

		if ( strlen(rsent) > 29 )
			{	ch = *(rsent + 29);
				if ( iskanji(ch) )  rsent[29] = ' ';
			}
		return(0);
	}
