summaryrefslogtreecommitdiff
path: root/hieroglyph/scanner.h
diff options
context:
space:
mode:
Diffstat (limited to 'hieroglyph/scanner.h')
-rw-r--r--hieroglyph/scanner.h55
1 files changed, 0 insertions, 55 deletions
diff --git a/hieroglyph/scanner.h b/hieroglyph/scanner.h
deleted file mode 100644
index f769fa7..0000000
--- a/hieroglyph/scanner.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-/*
- * scanner.h
- * Copyright (C) 2005-2006 Akira TAGOH
- *
- * Authors:
- * Akira TAGOH <at@gclab.org>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- */
-#ifndef __LIBRETTO_SCANNER_H__
-#define __LIBRETTO_SCANNER_H__
-
-#include <hieroglyph/hgtypes.h>
-
-
-G_BEGIN_DECLS
-
-typedef enum {
- HG_SCAN_C_NULL,
- HG_SCAN_C_CONTROL,
- HG_SCAN_C_NAME,
- HG_SCAN_C_SPACE,
- HG_SCAN_C_NUMERAL,
- HG_SCAN_C_BINARY,
-} HgScannerCharType;
-
-
-#define _hg_scanner_isspace(__hg_scanner_char) \
- ((__hg_scanner_char) == ' ' || \
- (__hg_scanner_char) == '\t' || \
- (__hg_scanner_char) == '\r' || \
- (__hg_scanner_char) == '\n')
-
-
-HgValueNode *hg_scanner_get_object(HgVM *vm,
- HgFileObject *file);
-
-G_END_DECLS
-
-
-#endif /* __LIBRETTO_SCANNER_H__ */