Cleanup: disable clang-format for character table

This commit is contained in:
Campbell Barton 2020-04-08 13:29:51 +10:00
parent 1c58311440
commit bd45ec0b06
1 changed files with 9 additions and 96 deletions

View File

@ -151,111 +151,24 @@ typedef enum {
UNSAFE_SLASHES = 0x20, /* Allows all characters except for '/' and '%' */
} UnsafeCharacterSet;
/* Don't loose comment alignment. */
/* clang-format off */
static const unsigned char acceptable[96] = {
/* A table of the ASCII chars from space (32) to DEL (127) */
/* ! " # $ % & ' ( ) * + , - . / */
0x00,
0x3F,
0x20,
0x20,
0x28,
0x00,
0x2C,
0x3F,
0x3F,
0x3F,
0x3F,
0x2A,
0x28,
0x3F,
0x3F,
0x1C,
0x00,0x3F,0x20,0x20,0x28,0x00,0x2C,0x3F,0x3F,0x3F,0x3F,0x2A,0x28,0x3F,0x3F,0x1C,
/* 0 1 2 3 4 5 6 7 8 9 : ; < = > ? */
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x38,
0x20,
0x20,
0x2C,
0x20,
0x20,
0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x38,0x20,0x20,0x2C,0x20,0x20,
/* @ A B C D E F G H I J K L M N O */
0x38,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x38,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
/* P Q R S T U V W X Y Z [ \ ] ^ _ */
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x20,
0x20,
0x20,
0x20,
0x3F,
0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x20,0x20,0x20,0x20,0x3F,
/* ` a b c d e f g h i j k l m n o */
0x20,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x20,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
/* p q r s t u v w x y z { | } ~ DEL */
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x3F,
0x20,
0x20,
0x20,
0x3F,
0x20,
0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x20,0x20,0x20,0x3F,0x20,
};
/* clang-format on */
static const char hex[17] = "0123456789abcdef";