summaryrefslogtreecommitdiff
path: root/src/utils.h
blob: b37d755d4d0ddb025eed2f824275219437ce2301 (plain)
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
26
27
28
29
30
31
32
/* utility helpers
 *
 * This file is part of nsnsgenbind.
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 * Copyright 2015 Vincent Sanders <vince@netsurf-browser.org>
 */

#ifndef nsgenbind_utils_h
#define nsgenbind_utils_h

/**
 * get a pathname with the output prefix prepended
 *
 * \param fname leaf filename.
 * \return full prefixed path to file caller must free
 */
char *genb_fpath(const char *fname);

/**
 * Open file allowing for output path prefix
 */
FILE *genb_fopen(const char *fname, const char *mode);

#ifdef _WIN32
#define NEED_STRNDUP 1
char *strndup(const char *s, size_t n);
#endif

#define SLEN(x) (sizeof((x)) - 1)

#endif