-
Notifications
You must be signed in to change notification settings - Fork 0
/
cssengine.c
58 lines (43 loc) · 1.04 KB
/
cssengine.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**************************************************************************
=======================
The Voyager Web Browser
=======================
Copyright (C) 1995-2003 by
Oliver Wagner <owagner@vapor.com>
All Rights Reserved
Parts Copyright (C) by
David Gerber <zapek@vapor.com>
Jon Bright <jon@siliconcircus.com>
Matt Sealey <neko@vapor.com>
**************************************************************************/
/*
* CSS tree parser
* ----------------------
* - parses a style sheet or individual style definition
*
* © 1999-2003 by VaporWare CVS team <ibcvs@vapor.com>
* All rights reserved
*
* $Id: cssengine.c,v 1.8 2003/07/06 16:51:33 olli Exp $
*
*/
#include "voyager.h"
/* private */
#include "copyright.h"
#include "voyager_cat.h"
#include "mui_func.h"
static struct MinList css_tree;
static APTR css_pool;
int init_css( void )
{
D( db_init, bug( "initializing..\n" ) );
NEWLIST( &css_tree );
return( TRUE );
}
void cleanup_css( void )
{
}
int parse_css( char *spec, int sheet )
{
return(0);
}