FcPrivate void
FcTestDestroy (FcTest *test);
-FcPrivate FcExpr *
-FcExprCreateInteger (int i);
-
-FcPrivate FcExpr *
-FcExprCreateDouble (double d);
-
-FcPrivate FcExpr *
-FcExprCreateString (const FcChar8 *s);
-
-FcPrivate FcExpr *
-FcExprCreateMatrix (const FcMatrix *m);
-
-FcPrivate FcExpr *
-FcExprCreateBool (FcBool b);
-
-FcPrivate FcExpr *
-FcExprCreateNil (void);
-
-FcPrivate FcExpr *
-FcExprCreateField (const char *field);
-
-FcPrivate FcExpr *
-FcExprCreateConst (const FcChar8 *constant);
-
-FcPrivate FcExpr *
-FcExprCreateOp (FcExpr *left, FcOp op, FcExpr *right);
-
-FcPrivate void
-FcExprDestroy (FcExpr *e);
-
FcPrivate void
FcEditDestroy (FcEdit *e);
#undef STRICT
#endif
+static void
+FcExprDestroy (FcExpr *e);
void
FcTestDestroy (FcTest *test)
return e;
}
-FcExpr *
+static FcExpr *
FcExprCreateInteger (int i)
{
FcExpr *e = FcExprAlloc ();
return e;
}
-FcExpr *
+static FcExpr *
FcExprCreateDouble (double d)
{
FcExpr *e = FcExprAlloc ();
return e;
}
-FcExpr *
+static FcExpr *
FcExprCreateString (const FcChar8 *s)
{
FcExpr *e = FcExprAlloc ();
return e;
}
-FcExpr *
+static FcExpr *
FcExprCreateMatrix (const FcMatrix *m)
{
FcExpr *e = FcExprAlloc ();
return e;
}
-FcExpr *
+static FcExpr *
FcExprCreateBool (FcBool b)
{
FcExpr *e = FcExprAlloc ();
return e;
}
-FcExpr *
+static FcExpr *
FcExprCreateNil (void)
{
FcExpr *e = FcExprAlloc ();
return e;
}
-FcExpr *
+static FcExpr *
FcExprCreateField (const char *field)
{
FcExpr *e = FcExprAlloc ();
return e;
}
-FcExpr *
+static FcExpr *
FcExprCreateConst (const FcChar8 *constant)
{
FcExpr *e = FcExprAlloc ();
return e;
}
-FcExpr *
+static FcExpr *
FcExprCreateOp (FcExpr *left, FcOp op, FcExpr *right)
{
FcExpr *e = FcExprAlloc ();
return e;
}
-void
+static void
FcExprDestroy (FcExpr *e)
{
if (!e)