mirror of
https://github.com/quantum5/Zalgo.git
synced 2025-04-24 13:41:57 -04:00
14 lines
331 B
C++
14 lines
331 B
C++
#pragma once
|
|
#ifndef id76AD7CF2_E519_495C_8C6B138352825E12
|
|
#define id76AD7CF2_E519_495C_8C6B138352825E12
|
|
|
|
inline bool IsZalgo(wchar_t ch)
|
|
{
|
|
return ch >= 0x0300 && ch < 0x0370 || ch == 0x489;
|
|
}
|
|
|
|
wchar_t *ZalgoComes(const wchar_t *text, bool up, bool mid, bool down, int level);
|
|
wchar_t *ZalgoGoes(const wchar_t *zalgo);
|
|
|
|
#endif
|