]> git.sur5r.net Git - cc65/blobdiff - src/common/fname.h
add gotox, gotoy, and gotoxy
[cc65] / src / common / fname.h
index de54bca3e5a1ca69a0ddca61492d38c3aa76b0fa..c9c3848f78a140fdb494aad82f5ad1f8026eabd3 100644 (file)
@@ -1,15 +1,15 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                 fname.h                                  */
+/*                                  fname.h                                  */
 /*                                                                           */
-/*                      File name handling utilities                        */
+/*                       File name handling utilities                        */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2000      Ullrich von Bassewitz                                       */
-/*               Wacholderweg 14                                             */
-/*               D-70597 Stuttgart                                           */
-/* EMail:        uz@musoftware.de                                            */
+/* (C) 2000-2003 Ullrich von Bassewitz                                       */
+/*               Römerstrasse 52                                             */
+/*               D-70794 Filderstadt                                         */
+/* EMail:        uz@cc65.org                                                 */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
@@ -39,7 +39,7 @@
 
 
 /*****************************************************************************/
-/*                                          Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
 const char* FindExt (const char* Name);
 /* Return a pointer to the file extension in Name or NULL if there is none */
 
+const char* FindName (const char* Path);
+/* Return a pointer to the file name in Path. If there is no path leading to
+ * the file, the function returns Path as name.
+ */
+
 char* MakeFilename (const char* Origin, const char* Ext);
 /* Make a new file name from Origin and Ext. If Origin has an extension, it
  * is removed and Ext is appended. If Origin has no extension, Ext is simply