clutil.h 890 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. ---------------------------------------------------------------------------
  3. Copyright (c) 2003, Dominik Reichl <dominik.reichl@t-online.de>, Germany.
  4. All rights reserved.
  5. Distributed under the terms of the GNU General Public License v2.
  6. This software is provided 'as is' with no explicit or implied warranties
  7. in respect of its properties, including, but not limited to, correctness
  8. and/or fitness for purpose.
  9. ---------------------------------------------------------------------------
  10. */
  11. // ReichlSoft Command Line Utilities
  12. // Version 2.0
  13. #ifndef ___CL_UTIL_H___
  14. #define ___CL_UTIL_H___
  15. #include "rhsyscfg.h"
  16. bool isArgument(char *pszString);
  17. void fmtArgument(char *pszArg, char *pszDest);
  18. void fmtPath(char *pszPath);
  19. void catdirsep(char *pszPath);
  20. void pathonly(char *pszPath);
  21. void fileonly(char *pszPath);
  22. bool ispathnav(char *pszPath);
  23. #endif // ___CL_UTIL_H___