mirror of
https://github.com/Sandstorm-Station/Sandstorm-Station-13.git
synced 2026-07-17 03:04:55 +01:00
5 lines
440 B
Plaintext
5 lines
440 B
Plaintext
/// Adds an utf-8 header...? only ever used on circuitry so when wiremod arrives...
|
|
#define UTF8HEADER "<meta http-equiv='Content-Type' content='text/html; charset=UTF-8' /><meta http-equiv='X-UA-Compatible' content='IE=edge' />"
|
|
/// A shorthand for ternary operators to simulate a null-coalescing operator. Returns the first argument if its defined, otherwise, second.
|
|
#define NULL_COALESCE(var, default) (isnull(var) ? (default) : (var))
|