aboutsummaryrefslogtreecommitdiffstats
path: root/libfonts_parse_double__.c
blob: 30fc61dd2b50a1be88fd6604979b4660da43644a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* 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