* @return @c True if character @a c is a control character, @c false otherwise. */
| 982 | * @return @c True if character @a c is a control character, @c false otherwise. |
| 983 | */ |
| 984 | bool isContolCharacter(char c) { |
| 985 | return c=='\b' || c=='\f' || c=='\n' || c=='\r' || c=='\t' || c=='\v'; |
| 986 | } |
| 987 | |
| 988 | /** |
| 989 | * @return @c True if character @a c is a nice character (printable or control). |
no outgoing calls