| 110 | } |
| 111 | |
| 112 | static int PrintScriptingIndicatorOffset(Accessor &styler, unsigned int start, unsigned int end) { |
| 113 | int iResult = 0; |
| 114 | char s[100]; |
| 115 | GetTextSegment(styler, start, end, s, sizeof(s)); |
| 116 | if (0 == strncmp(s, "php", 3)) { |
| 117 | iResult = 3; |
| 118 | } |
| 119 | |
| 120 | return iResult; |
| 121 | } |
| 122 | |
| 123 | static script_type ScriptOfState(int state) { |
| 124 | if ((state >= SCE_HP_START) && (state <= SCE_HP_IDENTIFIER)) { |
no test coverage detected