Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/libexec/rtld-elf/libmap.h
34822 views
1
/*
2
*/
3
4
#ifndef LIBMAP_H
5
#define LIBMAP_H
6
7
int lm_init(const char *);
8
void lm_fini(void);
9
char *lm_find(const char *, const char *);
10
char *lm_findn(const char *, const char *, const size_t);
11
12
#endif
13
14