FrontISTR 5.2.0
Large-scale structural analysis program with finit element method
Loading...
Searching...
No Matches
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
9extern int HECMW_get_path_separator(void);
10
11extern int HECMW_is_absolute_path(const char *path);
12
13extern char *HECMW_dirname(const char *path);
14
15extern char *HECMW_basename(const char *path);
16
17#endif
char * HECMW_basename(const char *path)
Definition: hecmw_path.c:159
int HECMW_get_path_separator(void)
Definition: hecmw_path.c:34
int HECMW_is_absolute_path(const char *path)
Definition: hecmw_path.c:45
char * HECMW_dirname(const char *path)
Definition: hecmw_path.c:167