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
55
56
57
58
59
60
61
|
/* gnu.vapi
*
* Copyright (C) 2020 Reuben Thomas
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Author:
* Reuben Thomas <rrt@sc3d.org>
*/
[CCode (cprefix = "", lower_case_cprefix = "")]
namespace Gnu {
/**
* Provides the values for the 'has_arg' field of 'GetoptOption'.
*/
[CCode (cname = "int", cprefix = "", cheader_filename = "getopt.h", has_type_id = false)]
public enum GetoptArgument {
[CCode (cname = "no_argument")]
NONE,
[CCode (cname = "required_argument")]
REQUIRED,
[CCode (cname = "optional_argument")]
OPTIONAL
}
[CCode (cname = "struct option", cheader_filename = "getopt.h", has_type_id = false)]
public struct GetoptOption {
public unowned string name;
public int has_arg;
public int *flag;
public int val;
}
[CCode (cheader_filename = "getopt.h")]
public int getopt_long ([CCode (array_length_pos = 0.1)] string[] args, string shortopts, [CCode (array_length = false, array_null_terminated = true)] GetoptOption[] longopts, out int longind);
[CCode (cheader_filename = "getopt.h")]
public int getopt_long_only ([CCode (array_length_pos = 0.1)] string[] args, string shortopts, [CCode (array_length = false, array_null_terminated = true)] GetoptOption[] longopts, out int longind);
[CCode (cheader_filename = "string.h", feature_test_macro = "_GNU_SOURCE")]
public string memmem (string haystack, size_t haystack_len, string needle, size_t needle_len);
[CCode (cheader_filename = "error.h")]
[PrintfFormat]
public void error (int status, int errnum, string format, ...);
[CCode (cheader_filename = "quote.h")]
public string quote (string arg);
}
|