1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
/*
* cook - file construction tool
* Copyright (C) 1993, 1994, 1995, 1997, 1998, 1999, 2001 Peter Miller;
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
*
* MANIFEST: interface definition for cook/os.c
*
* This file was originally called cook/os.h, but <os.h> is a system
* include file on some systems, and this caused portability problems.
*/
#ifndef COOK_OS_INTERFACE_H
#define COOK_OS_INTERFACE_H
#include <ac/time.h>
#include <str.h>
#include <str_list.h>
time_t os_mtime_oldest _((string_ty *));
time_t os_mtime_newest _((string_ty *));
int os_mtime_adjust _((string_ty *, time_t));
int os_touch _((string_ty *));
int os_execute _((string_list_ty *cmd, string_ty *input, int errok));
int os_exists _((string_ty *));
int os_exists_symlink _((string_ty *));
int os_exists_dir _((string_ty *));
string_ty *os_accdir _((void));
string_ty *os_curdir _((void));
string_ty *os_dirname _((string_ty *));
string_ty *os_dirname_relative _((string_ty *));
string_ty *os_entryname _((string_ty *));
string_ty *os_pathname _((string_ty *));
int os_legal_path _((string_ty *));
int os_delete _((string_ty *path, int echo));
int os_clear_stat _((string_ty *));
int exit_status _((char *cmd, int status, int errok));
int os_mkdir _((string_ty *path, int echo));
string_ty *os_path_cat _((string_ty *, string_ty *));
#endif /* COOK_OS_INTERFACE_H */
|