mirror of
https://github.com/opnsense/src.git
synced 2026-02-03 20:49:35 -05:00
12 lines
199 B
C
12 lines
199 B
C
/*
|
|
*/
|
|
|
|
#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
|