New functions PushSearchPath and PopSearchPath.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4671 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2010-05-28 11:22:44 +00:00
parent 64b597017a
commit ebd679dd57
2 changed files with 45 additions and 13 deletions

View File

@@ -75,6 +75,12 @@ void AddSubSearchPathFromEnv (SearchPath* P, const char* EnvVar, const char* Sub
* the environment variable value.
*/
void PushSearchPath (SearchPath* P, const char* NewPath);
/* Add a new search path to the head of an existing search path list */
void PopSearchPath (SearchPath* P);
/* Remove a search path from the head of an existing search path list */
void ForgetSearchPath (SearchPath* P);
/* Forget all search paths in the given list */