aboutsummaryrefslogtreecommitdiffstats
path: root/libfonts_parse_double__.c
blob: 2fb182c31af0e31ec6b61f1fff3a71acab8139ab (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
24
25
/* 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