1#ifndef SASS_FN_MISCS_H
2#define SASS_FN_MISCS_H
3
4#include "fn_utils.hpp"
5
6namespace Sass {
7
8 namespace Functions {
9
10 extern Signature type_of_sig;
11 extern Signature variable_exists_sig;
12 extern Signature global_variable_exists_sig;
13 extern Signature function_exists_sig;
14 extern Signature mixin_exists_sig;
15 extern Signature feature_exists_sig;
16 extern Signature call_sig;
17 extern Signature not_sig;
18 extern Signature if_sig;
19 extern Signature set_nth_sig;
20 extern Signature content_exists_sig;
21 extern Signature get_function_sig;
22
23 BUILT_IN(type_of);
24 BUILT_IN(variable_exists);
25 BUILT_IN(global_variable_exists);
26 BUILT_IN(function_exists);
27 BUILT_IN(mixin_exists);
28 BUILT_IN(feature_exists);
29 BUILT_IN(call);
30 BUILT_IN(sass_not);
31 BUILT_IN(sass_if);
32 BUILT_IN(set_nth);
33 BUILT_IN(content_exists);
34 BUILT_IN(get_function);
35
36 }
37
38}
39
40#endif
41

source code of gtk/subprojects/libsass/src/fn_miscs.hpp