1
by brian
clean slate |
1 |
/* Copyright (C) 2000 MySQL AB
|
2 |
||
3 |
This program is free software; you can redistribute it and/or modify
|
|
4 |
it under the terms of the GNU General Public License as published by
|
|
5 |
the Free Software Foundation; version 2 of the License.
|
|
6 |
||
7 |
This program is distributed in the hope that it will be useful,
|
|
8 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
9 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
10 |
GNU General Public License for more details.
|
|
11 |
||
12 |
You should have received a copy of the GNU General Public License
|
|
13 |
along with this program; if not, write to the Free Software
|
|
1802.10.2
by Monty Taylor
Update all of the copyright headers to include the correct address. |
14 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
|
1
by brian
clean slate |
15 |
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
16 |
#include "config.h" |
17 |
||
18 |
#include "drizzled/internal/my_sys.h" |
|
1271.5.3
by Tim Penhey
change the include files |
19 |
#include "drizzled/error.h" |
1241.9.64
by Monty Taylor
Moved remaining non-public portions of mysys and mystrings to drizzled/internal. |
20 |
#include "drizzled/internal/m_string.h" |
1
by brian
clean slate |
21 |
#include <errno.h> |
1022.2.29
by Monty Taylor
Fixed some no-inline warnings. |
22 |
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
23 |
namespace drizzled |
24 |
{
|
|
25 |
namespace internal |
|
26 |
{
|
|
27 |
||
1022.2.29
by Monty Taylor
Fixed some no-inline warnings. |
28 |
bool test_if_hard_path(const char *dir_name) |
29 |
{
|
|
30 |
if (dir_name[0] == FN_HOMELIB && dir_name[1] == FN_LIBCHAR) |
|
31 |
return (home_dir != NULL && test_if_hard_path(home_dir)); |
|
32 |
if (dir_name[0] == FN_LIBCHAR) |
|
33 |
return (true); |
|
34 |
return false; |
|
35 |
} /* test_if_hard_path */ |
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
36 |
|
37 |
} /* namespace internal */ |
|
38 |
} /* namespace drizzled */ |