mirror of
https://github.com/opnsense/src.git
synced 2026-02-16 00:58:21 -05:00
13 lines
212 B
C
13 lines
212 B
C
/*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
#ifndef LIBMAP_H
|
|
#define LIBMAP_H
|
|
|
|
int lm_init(const char *);
|
|
void lm_fini(void);
|
|
char *lm_find(const char *, const char *);
|
|
char *lm_findn(const char *, const char *, const size_t);
|
|
|
|
#endif
|