]> git.sur5r.net Git - cc65/blobdiff - src/common/searchpath.h
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / src / common / searchpath.h
index 8b7f23e3bcef91cf3357288566c6ce1228ed0885..555a0e18e4b0a33dde2e8c0becfeab7c37c5590f 100644 (file)
@@ -6,7 +6,7 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2000-2010, Ullrich von Bassewitz                                      */
+/* (C) 2000-2013, Ullrich von Bassewitz                                      */
 /*                Roemerstrasse 52                                           */
 /*                D-70794 Filderstadt                                        */
 /* EMail:         uz@cc65.org                                                */
@@ -43,7 +43,7 @@
 
 
 /*****************************************************************************/
-/*                                  Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
@@ -58,7 +58,7 @@ typedef struct Collection SearchPath;
 
 
 /*****************************************************************************/
-/*                                  Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
@@ -94,9 +94,6 @@ int PushSearchPath (SearchPath* P, const char* NewPath);
 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 */
-
 char* SearchFile (const SearchPath* P, const char* File);
 /* 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.