aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPSyntaxParser.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2013-01-25 22:25:29 +0000
committerstuconnolly <stuart02@gmail.com>2013-01-25 22:25:29 +0000
commit29797ba0fe84e314e51b994df04140c8621602dd (patch)
tree55df1b95e4025e3a1df3b698b9979dafaadd2c1c /Source/SPSyntaxParser.h
parent4faf9d57efd88123216f78b292886a5ee086e421 (diff)
downloadsequelpro-29797ba0fe84e314e51b994df04140c8621602dd.tar.gz
sequelpro-29797ba0fe84e314e51b994df04140c8621602dd.tar.bz2
sequelpro-29797ba0fe84e314e51b994df04140c8621602dd.zip
Move the flex parsing function definitions to their own file so they're not duplicated in multiple places.
Diffstat (limited to 'Source/SPSyntaxParser.h')
-rw-r--r--Source/SPSyntaxParser.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/Source/SPSyntaxParser.h b/Source/SPSyntaxParser.h
new file mode 100644
index 00000000..74fbb9bc
--- /dev/null
+++ b/Source/SPSyntaxParser.h
@@ -0,0 +1,38 @@
+//
+// $Id$
+//
+// SPSyntaxParser.h
+// sequel-pro
+//
+// Created by Stuart Connolly (stuconnolly.com) on January 25, 2013.
+// Copyright (c) 2013 Stuart Connolly. All rights reserved.
+//
+// Permission is hereby granted, free of charge, to any person
+// obtaining a copy of this software and associated documentation
+// files (the "Software"), to deal in the Software without
+// restriction, including without limitation the rights to use,
+// copy, modify, merge, publish, distribute, sublicense, and/or sell
+// copies of the Software, and to permit persons to whom the
+// Software is furnished to do so, subject to the following
+// conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+// OTHER DEALINGS IN THE SOFTWARE.
+
+/**
+ * Variable and prototype definitions required for flex syntax hightlighting parsing.
+ */
+extern NSUInteger yylex();
+extern NSUInteger yyuoffset, yyuleng;
+typedef struct yy_buffer_state *YY_BUFFER_STATE;
+void yy_switch_to_buffer(YY_BUFFER_STATE);
+YY_BUFFER_STATE yy_scan_string(const char *);