forked from blues/note-c
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathn_const.c
More file actions
28 lines (26 loc) · 741 Bytes
/
n_const.c
File metadata and controls
28 lines (26 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*!
* @file n_const.c
*
* Written by Ray Ozzie and Blues Inc. team.
*
* Copyright (c) 2019 Blues Inc. MIT License. Use of this source code is
* governed by licenses granted by the copyright holder including that found in
* the
* <a href="https://github.com/blues/note-c/blob/master/LICENSE">LICENSE</a>
* file.
*
*/
#include "n_lib.h"
const char *c_null = "null";
const char *c_false = "false";
const char *c_true = "true";
const char *c_nullstring = "";
const char *c_newline = "\r\n";
const char *c_mem = "mem";
const char *c_iotimeout = "timeout {io}";
const char *c_err = "err";
const char *c_req = "req";
const char *c_cmd = "cmd";
const char *c_bad = "bad";
const char *c_iobad = "bad {io}";
const char *c_ioerr = "{io}";