Lines Matching defs:lib
79 * if lib!=0 then pathpath() attempted after include search
81 * any *: prefix in lib is ignored (discipline library dictionary support)
85 pathfind(const char* name, const char* lib, const char* type, char* buf, size_t size)
150 * finally a lib related search on PATH
153 if (lib)
155 if (s = strrchr((char*)lib, ':'))
156 lib = (const char*)s + 1;
157 sfsprintf(tmp, sizeof(tmp), "lib/%s/%s", lib, name);
162 sfsprintf(tmp, sizeof(tmp), "lib/%s/%s.%s", lib, name, type);