blob: 30fc61dd2b50a1be88fd6604979b4660da43644a (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST
int
libfonts_parse_double__(double *outp, const char *value)
{
return 0; /* TODO implement */
}
#else
int
main(void)
{
return 0; /* TODO add test */
}
#endif
|