aboutsummaryrefslogtreecommitdiffstats
path: root/system_cmds/gcore.tproj/convert.h
blob: 03854b828a74dc426fd0cdfc04cbe27cd5ab04eb (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
/*
 * Copyright (c) 2016 Apple Inc.  All rights reserved.
 */

#include "options.h"

#include <stdbool.h>

#ifndef _CONVERT_H
#define _CONVERT_H

#ifdef CONFIG_GCORE_FREF
extern int gcore_fref(int);
#endif

#ifdef CONFIG_GCORE_MAP
extern int gcore_map(int);
#endif

#ifdef CONFIG_GCORE_CONV
extern int gcore_conv(int, const char *, bool, int);
#endif

#endif /* _CONVERT_H */