Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/include/misc-f.h
blob: 64ed054c6b9b5ba3b88d71bb8c82393b54379a1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef IUTIL_H
#define IUTIL_H
#include <xio.h>
#ifdef __cplusplus
extern "C" {
#endif
    struct image;

    CONST char *writepng(xio_constpath filename, CONST struct image *image);
    void XaoS_srandom(unsigned int x);
    long int XaoS_random(void);
    char *mystrdup(CONST char *);

#ifdef __cplusplus
}
#endif
#endif