summaryrefslogtreecommitdiff
path: root/src/cr-tknzr.h
diff options
context:
space:
mode:
authorDodji Seketeli <dodji@src.gnome.org>2003-04-12 16:50:32 +0000
committerDodji Seketeli <dodji@src.gnome.org>2003-04-12 16:50:32 +0000
commit17114030e0e37f93682c903dd818da1f0e2e6f6b (patch)
treef52286082af39c649dfbc86015ab080ac2a55abd /src/cr-tknzr.h
parent4f5560ef67d35121d1087aee9b5e34dece012d8a (diff)
downloadlibcroco-17114030e0e37f93682c903dd818da1f0e2e6f6b.tar.gz
big tree layout cleanup.
Dodji.
Diffstat (limited to 'src/cr-tknzr.h')
-rw-r--r--src/cr-tknzr.h125
1 files changed, 0 insertions, 125 deletions
diff --git a/src/cr-tknzr.h b/src/cr-tknzr.h
deleted file mode 100644
index fe2e906..0000000
--- a/src/cr-tknzr.h
+++ /dev/null
@@ -1,125 +0,0 @@
-/* -*- Mode: C; indent-tabs-mode:nil; c-basic-offset: 8-*- */
-
-/*
- * This file is part of The Croco Library
- *
- * Copyright (C) 2002-2003 Dodji Seketeli <dodji@seketeli.org>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of version 2.1 of the GNU Lesser General Public
- * License as published by the Free Software Foundation.
- *
- * This program 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 General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
- * USA
- */
-
-/*
- *$Id$
- */
-
-/**
- *@file
- *The declaration of the #CRTknzr (tokenizer)
- *class.
- */
-#ifndef __CR_TKNZR_H__
-#define __CR_TKNZR_H__
-
-#include "cr-utils.h"
-#include "cr-parser-input.h"
-#include "cr-token.h"
-
-G_BEGIN_DECLS
-
-
-typedef struct _CRTknzr CRTknzr ;
-typedef struct _CRTknzrPriv CRTknzrPriv ;
-
-struct _CRTknzr
-{
- CRTknzrPriv *priv ;
-} ;
-
-CRTknzr *
-cr_tknzr_new (CRInput *a_input) ;
-
-CRTknzr *
-cr_tknzr_new_from_uri (guchar *a_file_uri,
- enum CREncoding a_enc) ;
-
-CRTknzr *
-cr_tknzr_new_from_buf (guchar *a_buf, gulong a_len,
- enum CREncoding a_enc,
- gboolean a_free_at_destroy) ;
-
-gboolean
-cr_tknzr_unref (CRTknzr *a_this) ;
-
-void
-cr_tknzr_ref (CRTknzr *a_this) ;
-
-enum CRStatus
-cr_tknzr_read_byte (CRTknzr *a_this, guchar *a_byte) ;
-
-enum CRStatus
-cr_tknzr_read_char (CRTknzr *a_this, guint32 *a_char);
-
-enum CRStatus
-cr_tknzr_peek_char (CRTknzr *a_this, guint32 *a_char) ;
-
-enum CRStatus
-cr_tknzr_peek_byte (CRTknzr *a_this, gulong a_offset,
- guchar *a_byte) ;
-
-enum CRStatus
-cr_tknzr_set_cur_pos (CRTknzr *a_this, CRInputPos *a_pos) ;
-
-glong
-cr_tknzr_get_nb_bytes_left (CRTknzr *a_this) ;
-
-enum CRStatus
-cr_tknzr_get_cur_pos (CRTknzr *a_this, CRInputPos *a_pos) ;
-
-enum CRStatus
-cr_tknzr_seek_index (CRTknzr *a_this,
- enum CRSeekPos a_origin,
- gint a_pos) ;
-
-enum CRStatus
-cr_tknzr_get_cur_byte_addr (CRTknzr *a_this, guchar **a_addr) ;
-
-
-enum CRStatus
-cr_tknzr_consume_chars (CRTknzr *a_this, guint32 a_char,
- glong *a_nb_char) ;
-
-enum CRStatus
-cr_tknzr_get_next_token (CRTknzr *a_this, CRToken ** a_tk) ;
-
-enum CRStatus
-cr_tknzr_unget_token (CRTknzr *a_this, CRToken *a_token) ;
-
-
-enum CRStatus
-cr_tknzr_parse_token (CRTknzr *a_this, enum CRTokenType a_type,
- enum CRTokenExtraType a_et, void *a_res,
- void *a_extra_res) ;
-enum CRStatus
-cr_tknzr_set_input (CRTknzr *a_this, CRInput *a_input) ;
-
-enum CRStatus
-cr_tknzr_get_input (CRTknzr *a_this, CRInput **a_input) ;
-
-void
-cr_tknzr_destroy (CRTknzr *a_this) ;
-
-G_END_DECLS
-
-#endif /*__CR_TKZNR_H__*/