blob: b5bca71c69df835d4242cb8e7145e7f8139e9df5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* $OpenBSD: funmap.h,v 1.8 2019/07/11 18:20:18 lum Exp $ */
/* This file is in the public domain */
void funmap_init(void);
PF name_function(const char *);
const char *function_name(PF);
struct list *complete_function_list(const char *);
int funmap_add(PF, const char *, int);
int numparams_function(PF);
|