FrontISTR  5.7.0
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
HECMW_basename
char * HECMW_basename(const char *path)
Definition: hecmw_path.c:159
HECMW_get_path_separator
int HECMW_get_path_separator(void)
Definition: hecmw_path.c:34
HECMW_is_absolute_path
int HECMW_is_absolute_path(const char *path)
Definition: hecmw_path.c:45
HECMW_dirname
char * HECMW_dirname(const char *path)
Definition: hecmw_path.c:167