summaryrefslogtreecommitdiff
path: root/src/parse/font_face.h
blob: 435380eb620c7bfd5aeba906842729fb59c2202c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * This file is part of LibCSS.
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 * Copyright 2011 Things Made Out Of Other Things Ltd.
 * Written by James Montgomerie <jamie@th.ingsmadeoutofotherthin.gs>
 */

#ifndef css_parse_font_face_h_
#define css_parse_font_face_h_

#include <parserutils/utils/vector.h>

#include "stylesheet.h"
#include "lex/lex.h"
#include "parse/language.h"

css_error css__parse_font_descriptor(css_language *c,
		const css_token *descriptor, const parserutils_vector *vector,
		int *ctx, struct css_rule_font_face *rule);

#endif