aa0b0a88e8
X-SVN-Rev: 2
28 lines
1.1 KiB
C
28 lines
1.1 KiB
C
/*
|
|
*******************************************************************************
|
|
* *
|
|
* COPYRIGHT: *
|
|
* (C) Copyright International Business Machines Corporation, 1998, 1999 *
|
|
* Licensed Material - Program-Property of IBM - All Rights Reserved. *
|
|
* US Government Users Restricted Rights - Use, duplication, or disclosure *
|
|
* restricted by GSA ADP Schedule Contract with IBM Corp. *
|
|
* *
|
|
*******************************************************************************
|
|
*
|
|
* File util.h
|
|
*
|
|
* Modification History:
|
|
*
|
|
* Date Name Description
|
|
* 06/10/99 stephen Creation.
|
|
*******************************************************************************
|
|
*/
|
|
|
|
#ifndef UTIL_H
|
|
#define UTIL_H 1
|
|
|
|
void get_dirname(char *dirname, const char *filename);
|
|
void get_basename(char *basename, const char *filename);
|
|
|
|
#endif /* ! UTIL_H */
|