mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 03:53:33 +00:00
55 lines
2.6 KiB
C
55 lines
2.6 KiB
C
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
|
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
│ Copyright 2020 Justine Alexandra Roberts Tunney │
|
|
│ │
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
|
│ │
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
|
#include "libc/str/internal.h"
|
|
|
|
unsigned cescapec(int c) {
|
|
unsigned char ch = c;
|
|
switch (ch) {
|
|
case '\a':
|
|
return '\\' | 'a' << 8;
|
|
case '\b':
|
|
return '\\' | 'b' << 8;
|
|
case '\v':
|
|
return '\\' | 'v' << 8;
|
|
case '\f':
|
|
return '\\' | 'f' << 8;
|
|
case '\?':
|
|
return '\\' | '?' << 8;
|
|
case '\n':
|
|
return '\\' | 'n' << 8;
|
|
case '\r':
|
|
return '\\' | 'r' << 8;
|
|
case '\t':
|
|
return '\\' | 't' << 8;
|
|
case '\"':
|
|
return '\\' | '"' << 8;
|
|
case '\'':
|
|
return '\\' | '\'' << 8;
|
|
case '\\':
|
|
return '\\' | '\\' << 8;
|
|
default: {
|
|
if (ch >= 0x80 || !isprint(ch)) {
|
|
return '\\' | (ch / 64 + '0') << 8 | (ch % 64 / 8 + '0') << 16 |
|
|
(ch % 8 + '0') << 24;
|
|
} else {
|
|
return ch;
|
|
}
|
|
}
|
|
}
|
|
}
|