FrontISTR  5.7.1
Large-scale structural analysis program with finit element method
hecmw_path.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Copyright (c) 2019 FrontISTR Commons
3  * This software is released under the MIT License, see LICENSE.txt
4  *****************************************************************************/
5 
6 #ifndef HECMW_PATH_INCLUDED
7 #define HECMW_PATH_INCLUDED
8 
9 extern int HECMW_get_path_separator(void);
10 
11 extern int HECMW_is_absolute_path(const char *path);
12 
13 extern char *HECMW_dirname(const char *path);
14 
15 extern char *HECMW_basename(const char *path);
16 
17 #endif
char * HECMW_basename(const char *path)
Definition: hecmw_path.c:159
char * HECMW_dirname(const char *path)
Definition: hecmw_path.c:167
int HECMW_get_path_separator(void)
Definition: hecmw_path.c:34
int HECMW_is_absolute_path(const char *path)
Definition: hecmw_path.c:45