1 <?php 2 /************************************************************************************* 3 * cpp.php 4 * ------- 5 * Author: Dennis Bayer (Dennis.Bayer (at) mnifh-giessen.de) 6 * Contributors: 7 * - M. Uli Kusterer (witness.of.teachtext (at) gmx.net) 8 * - Jack Lloyd (lloyd (at) randombit.net) 9 * Copyright: (c) 2004 Dennis Bayer, Nigel McNie (http://qbnz.com/highlighter) 10 * Release Version: 1.0.8.3 11 * Date Started: 2004/09/27 12 * 13 * C++ language file for GeSHi. 14 * 15 * CHANGES 16 * ------- 17 * 2008/05/23 (1.0.7.22) 18 * - Added description of extra language features (SF#1970248) 19 * 2004/XX/XX (1.0.2) 20 * - Added several new keywords (Jack Lloyd) 21 * 2004/11/27 (1.0.1) 22 * - Added StdCLib function and constant names, changed color scheme to 23 * a cleaner one. (M. Uli Kusterer) 24 * - Added support for multiple object splitters 25 * 2004/10/27 (1.0.0) 26 * - First Release 27 * 28 * TODO (updated 2004/11/27) 29 * ------------------------- 30 * 31 ************************************************************************************* 32 * 33 * This file is part of GeSHi. 34 * 35 * GeSHi is free software; you can redistribute it and/or modify 36 * it under the terms of the GNU General Public License as published by 37 * the Free Software Foundation; either version 2 of the License, or 38 * (at your option) any later version. 39 * 40 * GeSHi is distributed in the hope that it will be useful, 41 * but WITHOUT ANY WARRANTY; without even the implied warranty of 42 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 43 * GNU General Public License for more details. 44 * 45 * You should have received a copy of the GNU General Public License 46 * along with GeSHi; if not, write to the Free Software 47 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 48 * 49 ************************************************************************************/ 50 51 $language_data = array ( 52 'LANG_NAME' => 'C++', 53 'COMMENT_SINGLE' => array(1 => '//', 2 => '#'), 54 'COMMENT_MULTI' => array('/*' => '*/'), 55 'COMMENT_REGEXP' => array( 56 //Multiline-continued single-line comments 57 1 => '/\/\/(?:\\\\\\\\|\\\\\\n|.)*$/m', 58 //Multiline-continued preprocessor define 59 2 => '/#(?:\\\\\\\\|\\\\\\n|.)*$/m' 60 ), 61 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE, 62 'QUOTEMARKS' => array("'", '"'), 63 'ESCAPE_CHAR' => '', 64 'ESCAPE_REGEXP' => array( 65 //Simple Single Char Escapes 66 1 => "#\\\\[abfnrtv\\'\"?\n]#i", 67 //Hexadecimal Char Specs 68 2 => "#\\\\x[\da-fA-F]{2}#", 69 //Hexadecimal Char Specs 70 3 => "#\\\\u[\da-fA-F]{4}#", 71 //Hexadecimal Char Specs 72 4 => "#\\\\U[\da-fA-F]{8}#", 73 //Octal Char Specs 74 5 => "#\\\\[0-7]{1,3}#" 75 ), 76 'NUMBERS' => 77 GESHI_NUMBER_INT_BASIC | GESHI_NUMBER_INT_CSTYLE | GESHI_NUMBER_BIN_PREFIX_0B | 78 GESHI_NUMBER_OCT_PREFIX | GESHI_NUMBER_HEX_PREFIX | GESHI_NUMBER_FLT_NONSCI | 79 GESHI_NUMBER_FLT_NONSCI_F | GESHI_NUMBER_FLT_SCI_SHORT | GESHI_NUMBER_FLT_SCI_ZERO, 80 'KEYWORDS' => array( 81 1 => array( 82 'break', 'case', 'continue', 'default', 'do', 'else', 'for', 'goto', 'if', 'return', 83 'switch', 'throw', 'while' 84 ), 85 2 => array( 86 'NULL', 'false', 'true', 'enum', 'errno', 'EDOM', 87 'ERANGE', 'FLT_RADIX', 'FLT_ROUNDS', 'FLT_DIG', 'DBL_DIG', 'LDBL_DIG', 88 'FLT_EPSILON', 'DBL_EPSILON', 'LDBL_EPSILON', 'FLT_MANT_DIG', 'DBL_MANT_DIG', 89 'LDBL_MANT_DIG', 'FLT_MAX', 'DBL_MAX', 'LDBL_MAX', 'FLT_MAX_EXP', 'DBL_MAX_EXP', 90 'LDBL_MAX_EXP', 'FLT_MIN', 'DBL_MIN', 'LDBL_MIN', 'FLT_MIN_EXP', 'DBL_MIN_EXP', 91 'LDBL_MIN_EXP', 'CHAR_BIT', 'CHAR_MAX', 'CHAR_MIN', 'SCHAR_MAX', 'SCHAR_MIN', 92 'UCHAR_MAX', 'SHRT_MAX', 'SHRT_MIN', 'USHRT_MAX', 'INT_MAX', 'INT_MIN', 93 'UINT_MAX', 'LONG_MAX', 'LONG_MIN', 'ULONG_MAX', 'HUGE_VAL', 'SIGABRT', 94 'SIGFPE', 'SIGILL', 'SIGINT', 'SIGSEGV', 'SIGTERM', 'SIG_DFL', 'SIG_ERR', 95 'SIG_IGN', 'BUFSIZ', 'EOF', 'FILENAME_MAX', 'FOPEN_MAX', 'L_tmpnam', 96 'SEEK_CUR', 'SEEK_END', 'SEEK_SET', 'TMP_MAX', 'stdin', 'stdout', 'stderr', 97 'EXIT_FAILURE', 'EXIT_SUCCESS', 'RAND_MAX', 'CLOCKS_PER_SEC', 98 'virtual', 'public', 'private', 'protected', 'template', 'using', 'namespace', 99 'try', 'catch', 'inline', 'dynamic_cast', 'const_cast', 'reinterpret_cast', 100 'static_cast', 'explicit', 'friend', 'wchar_t', 'typename', 'typeid', 'class' 101 ), 102 3 => array( 103 'cin', 'cerr', 'clog', 'cout', 'delete', 'new', 'this', 104 'printf', 'fprintf', 'snprintf', 'sprintf', 'assert', 105 'isalnum', 'isalpha', 'isdigit', 'iscntrl', 'isgraph', 'islower', 'isprint', 106 'ispunct', 'isspace', 'isupper', 'isxdigit', 'tolower', 'toupper', 107 'exp', 'log', 'log10', 'pow', 'sqrt', 'ceil', 'floor', 'fabs', 'ldexp', 108 'frexp', 'modf', 'fmod', 'sin', 'cos', 'tan', 'asin', 'acos', 'atan', 'atan2', 109 'sinh', 'cosh', 'tanh', 'setjmp', 'longjmp', 110 'va_start', 'va_arg', 'va_end', 'offsetof', 'sizeof', 'fopen', 'freopen', 111 'fflush', 'fclose', 'remove', 'rename', 'tmpfile', 'tmpname', 'setvbuf', 112 'setbuf', 'vfprintf', 'vprintf', 'vsprintf', 'fscanf', 'scanf', 'sscanf', 113 'fgetc', 'fgets', 'fputc', 'fputs', 'getc', 'getchar', 'gets', 'putc', 114 'putchar', 'puts', 'ungetc', 'fread', 'fwrite', 'fseek', 'ftell', 'rewind', 115 'fgetpos', 'fsetpos', 'clearerr', 'feof', 'ferror', 'perror', 'abs', 'labs', 116 'div', 'ldiv', 'atof', 'atoi', 'atol', 'strtod', 'strtol', 'strtoul', 'calloc', 117 'malloc', 'realloc', 'free', 'abort', 'exit', 'atexit', 'system', 'getenv', 118 'bsearch', 'qsort', 'rand', 'srand', 'strcpy', 'strncpy', 'strcat', 'strncat', 119 'strcmp', 'strncmp', 'strcoll', 'strchr', 'strrchr', 'strspn', 'strcspn', 120 'strpbrk', 'strstr', 'strlen', 'strerror', 'strtok', 'strxfrm', 'memcpy', 121 'memmove', 'memcmp', 'memchr', 'memset', 'clock', 'time', 'difftime', 'mktime', 122 'asctime', 'ctime', 'gmtime', 'localtime', 'strftime' 123 ), 124 4 => array( 125 'auto', 'bool', 'char', 'const', 'double', 'float', 'int', 'long', 'longint', 126 'register', 'short', 'shortint', 'signed', 'static', 'struct', 127 'typedef', 'union', 'unsigned', 'void', 'volatile', 'extern', 'jmp_buf', 128 'signal', 'raise', 'va_list', 'ptrdiff_t', 'size_t', 'FILE', 'fpos_t', 129 'div_t', 'ldiv_t', 'clock_t', 'time_t', 'tm', 130 ), 131 ), 132 'SYMBOLS' => array( 133 0 => array('(', ')', '{', '}', '[', ']'), 134 1 => array('<', '>','='), 135 2 => array('+', '-', '*', '/', '%'), 136 3 => array('!', '^', '&', '|'), 137 4 => array('?', ':', ';') 138 ), 139 'CASE_SENSITIVE' => array( 140 GESHI_COMMENTS => false, 141 1 => true, 142 2 => true, 143 3 => true, 144 4 => true, 145 ), 146 'STYLES' => array( 147 'KEYWORDS' => array( 148 1 => 'color: #0000ff;', 149 2 => 'color: #0000ff;', 150 3 => 'color: #0000dd;', 151 4 => 'color: #0000ff;' 152 ), 153 'COMMENTS' => array( 154 1 => 'color: #666666;', 155 2 => 'color: #339900;', 156 'MULTI' => 'color: #ff0000; font-style: italic;' 157 ), 158 'ESCAPE_CHAR' => array( 159 0 => 'color: #000099; font-weight: bold;', 160 1 => 'color: #000099; font-weight: bold;', 161 2 => 'color: #660099; font-weight: bold;', 162 3 => 'color: #660099; font-weight: bold;', 163 4 => 'color: #660099; font-weight: bold;', 164 5 => 'color: #006699; font-weight: bold;', 165 'HARD' => '', 166 ), 167 'BRACKETS' => array( 168 0 => 'color: #008000;' 169 ), 170 'STRINGS' => array( 171 0 => 'color: #FF0000;' 172 ), 173 'NUMBERS' => array( 174 0 => 'color: #0000dd;', 175 GESHI_NUMBER_BIN_PREFIX_0B => 'color: #208080;', 176 GESHI_NUMBER_OCT_PREFIX => 'color: #208080;', 177 GESHI_NUMBER_HEX_PREFIX => 'color: #208080;', 178 GESHI_NUMBER_FLT_SCI_SHORT => 'color:#800080;', 179 GESHI_NUMBER_FLT_SCI_ZERO => 'color:#800080;', 180 GESHI_NUMBER_FLT_NONSCI_F => 'color:#800080;', 181 GESHI_NUMBER_FLT_NONSCI => 'color:#800080;' 182 ), 183 'METHODS' => array( 184 1 => 'color: #007788;', 185 2 => 'color: #007788;' 186 ), 187 'SYMBOLS' => array( 188 0 => 'color: #008000;', 189 1 => 'color: #000080;', 190 2 => 'color: #000040;', 191 3 => 'color: #000040;', 192 4 => 'color: #008080;' 193 ), 194 'REGEXPS' => array( 195 ), 196 'SCRIPT' => array( 197 ) 198 ), 199 'URLS' => array( 200 1 => '', 201 2 => '', 202 3 => '', 203 4 => '' 204 ), 205 'OOLANG' => true, 206 'OBJECT_SPLITTERS' => array( 207 1 => '.', 208 2 => '::' 209 ), 210 'REGEXPS' => array( 211 ), 212 'STRICT_MODE_APPLIES' => GESHI_NEVER, 213 'SCRIPT_DELIMITERS' => array( 214 ), 215 'HIGHLIGHT_STRICT_BLOCK' => array( 216 ), 217 'TAB_WIDTH' => 4, 218 'PARSER_CONTROL' => array( 219 'KEYWORDS' => array( 220 'DISALLOWED_BEFORE' => "(?<![a-zA-Z0-9\$_\|\#])", 221 'DISALLOWED_AFTER' => "(?![a-zA-Z0-9_\|%\\-])" 222 ) 223 ) 224 ); 225 226 ?>