utils.h revision 260029
1235537Sgber/*
2235537Sgber * Automated Testing Framework (atf)
3235537Sgber *
4235537Sgber * Copyright (c) 2010 The NetBSD Foundation, Inc.
5235537Sgber * All rights reserved.
6235537Sgber *
7235537Sgber * Redistribution and use in source and binary forms, with or without
8235537Sgber * modification, are permitted provided that the following conditions
9235537Sgber * are met:
10235537Sgber * 1. Redistributions of source code must retain the above copyright
11235537Sgber *    notice, this list of conditions and the following disclaimer.
12235537Sgber * 2. Redistributions in binary form must reproduce the above copyright
13235537Sgber *    notice, this list of conditions and the following disclaimer in the
14235537Sgber *    documentation and/or other materials provided with the distribution.
15235537Sgber *
16235537Sgber * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
17235537Sgber * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18235537Sgber * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19235537Sgber * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20235537Sgber * IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
21235537Sgber * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22235537Sgber * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23235537Sgber * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24235537Sgber * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25235537Sgber * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26235537Sgber * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27235537Sgber * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28235537Sgber */
29235537Sgber
30235537Sgber#if !defined(ATF_C_UTILS_H)
31235537Sgber#define ATF_C_UTILS_H
32235537Sgber
33235537Sgber#include <stdbool.h>
34235537Sgber#include <unistd.h>
35235537Sgber
36235537Sgber#include <atf-c/defs.h>
37235537Sgber
38235537Sgbervoid atf_utils_cat_file(const char *, const char *);
39235537Sgberbool atf_utils_compare_file(const char *, const char *);
40235537Sgbervoid atf_utils_copy_file(const char *, const char *);
41void atf_utils_create_file(const char *, const char *, ...)
42    ATF_DEFS_ATTRIBUTE_FORMAT_PRINTF(2, 3);
43bool atf_utils_file_exists(const char *);
44pid_t atf_utils_fork(void);
45void atf_utils_free_charpp(char **);
46bool atf_utils_grep_file(const char *, const char *, ...)
47    ATF_DEFS_ATTRIBUTE_FORMAT_PRINTF(1, 3);
48bool atf_utils_grep_string(const char *, const char *, ...)
49    ATF_DEFS_ATTRIBUTE_FORMAT_PRINTF(1, 3);
50char *atf_utils_readline(int);
51void atf_utils_redirect(const int, const char *);
52void atf_utils_wait(const pid_t, const int, const char *, const char *);
53
54#endif /* ATF_C_UTILS_H */
55