2003-05-28 21:11:47 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* searchpath.h */
|
|
|
|
/* */
|
2010-05-09 10:54:15 +00:00
|
|
|
/* Handling of search paths */
|
2003-05-28 21:11:47 +00:00
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* */
|
2010-05-09 10:54:15 +00:00
|
|
|
/* (C) 2000-2010, Ullrich von Bassewitz */
|
2009-09-22 11:29:13 +00:00
|
|
|
/* Roemerstrasse 52 */
|
|
|
|
/* D-70794 Filderstadt */
|
|
|
|
/* EMail: uz@cc65.org */
|
2003-05-28 21:11:47 +00:00
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* This software is provided 'as-is', without any expressed or implied */
|
|
|
|
/* warranty. In no event will the authors be held liable for any damages */
|
|
|
|
/* arising from the use of this software. */
|
|
|
|
/* */
|
|
|
|
/* Permission is granted to anyone to use this software for any purpose, */
|
|
|
|
/* including commercial applications, and to alter it and redistribute it */
|
|
|
|
/* freely, subject to the following restrictions: */
|
|
|
|
/* */
|
|
|
|
/* 1. The origin of this software must not be misrepresented; you must not */
|
|
|
|
/* claim that you wrote the original software. If you use this software */
|
|
|
|
/* in a product, an acknowledgment in the product documentation would be */
|
|
|
|
/* appreciated but is not required. */
|
|
|
|
/* 2. Altered source versions must be plainly marked as such, and must not */
|
|
|
|
/* be misrepresented as being the original software. */
|
|
|
|
/* 3. This notice may not be removed or altered from any source */
|
|
|
|
/* distribution. */
|
|
|
|
/* */
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-05-09 10:54:15 +00:00
|
|
|
/* Exports facilities to search files in a list of directories. */
|
2003-05-28 21:11:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef SEARCHPATH_H
|
|
|
|
#define SEARCHPATH_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* Data */
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-05-09 10:54:15 +00:00
|
|
|
/* A search path is a pointer to the list */
|
|
|
|
typedef struct Collection SearchPath;
|
2003-05-28 21:11:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* Code */
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-05-09 10:54:15 +00:00
|
|
|
SearchPath* NewSearchPath (void);
|
|
|
|
/* Create a new, empty search path list */
|
|
|
|
|
|
|
|
void AddSearchPath (SearchPath* P, const char* NewPath);
|
|
|
|
/* Add a new search path to the end of an existing list */
|
2003-05-28 21:11:47 +00:00
|
|
|
|
2010-05-09 10:54:15 +00:00
|
|
|
void AddSearchPathFromEnv (SearchPath* P, const char* EnvVar);
|
|
|
|
/* Add a search path from an environment variable to the end of an existing
|
|
|
|
* list.
|
|
|
|
*/
|
2009-09-22 11:29:13 +00:00
|
|
|
|
2010-05-09 10:54:15 +00:00
|
|
|
void AddSubSearchPathFromEnv (SearchPath* P, const char* EnvVar, const char* SubDir);
|
2009-09-22 11:29:13 +00:00
|
|
|
/* Add a search path from an environment variable, adding a subdirectory to
|
|
|
|
* the environment variable value.
|
|
|
|
*/
|
2003-05-29 09:19:01 +00:00
|
|
|
|
2010-05-28 11:56:01 +00:00
|
|
|
int PushSearchPath (SearchPath* P, const char* NewPath);
|
|
|
|
/* Add a new search path to the head of an existing search path list, provided
|
|
|
|
* that it's not already there. If the path is already at the first position,
|
|
|
|
* return zero, otherwise return a non zero value.
|
|
|
|
*/
|
2010-05-28 11:22:44 +00:00
|
|
|
|
|
|
|
void PopSearchPath (SearchPath* P);
|
|
|
|
/* Remove a search path from the head of an existing search path list */
|
|
|
|
|
2010-05-09 10:54:15 +00:00
|
|
|
void ForgetSearchPath (SearchPath* P);
|
|
|
|
/* Forget all search paths in the given list */
|
2003-08-03 11:51:12 +00:00
|
|
|
|
2010-05-09 10:54:15 +00:00
|
|
|
char* SearchFile (const SearchPath* P, const char* File);
|
2003-05-28 21:11:47 +00:00
|
|
|
/* Search for a file in a list of directories. Return a pointer to a malloced
|
|
|
|
* area that contains the complete path, if found, return 0 otherwise.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* End of searchpath.h */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|