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