git ssb

1+

cel / pngspark



Tree: 7d1b2f8dab921f01fb353d94728ca41743b71b63

Files: 7d1b2f8dab921f01fb353d94728ca41743b71b63 / pngspark.c

328 bytesRaw
1#include "pngspark.h"
2
3int pngspark_init(struct pngspark *ps, int fd, int height, const char *color)
4{
5 ps->fd = fd;
6 ps->height = height;
7 (void)color;
8 return 0;
9}
10
11int pngspark_append(struct pngspark *ps, double value)
12{
13 (void)ps;
14 (void)value;
15 return 0;
16}
17
18int pngspark_end(struct pngspark *ps)
19{
20 (void)ps;
21 return 0;
22}
23
24

Built with git-ssb-web