1 /*
2  * This file is part of CSSTidy.
3  *
4  * CSSTidy is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * CSSTidy is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with CSSTidy; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18 
19 #ifndef HEADER_CSS_BACKGROUND
20 #define HEADER_CSS_BACKGROUND
21 
22 // Dissolves the background property
23 map<string,string> dissolve_short_bg(const string istring);
24 
25 // Same as explode, but not within a string
26 vector<string> explode_ws(char sep,string istring);
27 
28 void merge_bg(umap<string,string>& css_input);
29 
30 #endif // HEADER_CSS_BACKGROUND
31