Drizzled Public API Documentation

my_symlink.cc
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
14  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
15 
16 #include <config.h>
17 
18 #include <drizzled/internal/my_sys.h>
19 #include <drizzled/error.h>
20 #include <drizzled/internal/m_string.h>
21 #include <errno.h>
22 
23 namespace drizzled
24 {
25 namespace internal
26 {
27 
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 */
36 
37 } /* namespace internal */
38 } /* namespace drizzled */