/*
* make_punctation.c
*
* SFUN: End a sentece with a .
*
* (C) Frank Schmidt, Jesus@NorseMUD
*
*/
/* get rid of "blablabla. ." */
#define STRIP_TRAILING_WHITESPACE
/* end a sentence with a puntuation */
static string make_punctation(string str) {
int t;
t = str[strlen(str)-1];
#ifdef STRIP_TRAILING_WHITESPACE
while (t == ' ') {
str = str[0..strlen(str)-2];
t = str[strlen(str)-1];
}
#endif
if (t != '!' && t != '?' && t != '.')
return ".";
else
return "";
}