File: htmlfuncs.h

package info (click to toggle)
screem 0.2.1-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 3,748 kB
  • ctags: 2,270
  • sloc: ansic: 26,366; sh: 7,453; makefile: 512; sed: 93; perl: 18
file content (13 lines) | stat: -rw-r--r-- 403 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef HTMLFUNCS_H
#define HTMLFUNCS_H

gint in_attribute( gchar *text, gint pos );
gint in_entity( gchar *text, gint pos );
gint in_tag( gchar *text, gint pos );
gchar *next_tag( gchar *text, gint *pos );
gchar *previous_tag( gchar *text, gint *pos );
gint binary_search_tags( gchar *t );
gchar *tag_name( gchar *tag );
gchar *current_context( gchar *text, gint pos, gint *start, gint *end );

#endif