jak-project/goalc/util/text_util.cpp
2020-08-26 01:21:33 -04:00

17 lines
346 B
C++

/*!
* @file text_util.cpp
* Utilities for dealing with text.
*/
#include "text_util.h"
namespace util {
/*!
* Is c printable? Is true for letters, numbers, symbols, space, false for everything else.
* Note: newline/tab is not considered printable.
*/
bool is_printable_char(char c) {
return c >= ' ' && c <= '~';
}
} // namespace util