mirror of
https://github.com/open-goal/jak-project
synced 2026-06-05 03:08:40 -04:00
17 lines
327 B
C++
17 lines
327 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 <= '~';
|
|
}
|
|
}
|