2 * This dumb little program emulates the System V "echo" command,
3 * to accommodate BSD systems which don't understand the \c escape,
4 * meaning don't echo a newline. BSD uses "echo -n".
32 for (s = str; *s != '\0'; s++)
34 if (*s == '\\' && s[1] == 'c')