forked from ThomasMertes/seed7
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbinlib.h
More file actions
51 lines (50 loc) · 3.14 KB
/
binlib.h
File metadata and controls
51 lines (50 loc) · 3.14 KB
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
/********************************************************************/
/* */
/* s7 Seed7 interpreter */
/* Copyright (C) 1990 - 2015 Thomas Mertes */
/* */
/* 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., 51 Franklin Street, */
/* Fifth Floor, Boston, MA 02110-1301, USA. */
/* */
/* Module: Library */
/* File: seed7/src/binlib.h */
/* Changes: 2015 Thomas Mertes */
/* Content: All primitive actions for the types bin64 and bin32. */
/* */
/********************************************************************/
objectType bin_and (listType arguments);
objectType bin_and_assign (listType arguments);
objectType bin_big (listType arguments);
objectType bin_binary (listType arguments);
objectType bin_bit_length (listType arguments);
objectType bin_bytes_be_2_uint (listType arguments);
objectType bin_bytes_le_2_uint (listType arguments);
objectType bin_card (listType arguments);
objectType bin_cmp (listType arguments);
objectType bin_get_binary_from_set (listType arguments);
objectType bin_lowest_set_bit (listType arguments);
objectType bin_lshift (listType arguments);
objectType bin_lshift_assign (listType arguments);
objectType bin_n_bytes_be (listType arguments);
objectType bin_n_bytes_le (listType arguments);
objectType bin_or (listType arguments);
objectType bin_or_assign (listType arguments);
objectType bin_radix (listType arguments);
objectType bin_RADIX (listType arguments);
objectType bin_rshift (listType arguments);
objectType bin_rshift_assign (listType arguments);
objectType bin_str (listType arguments);
objectType bin_xor (listType arguments);
objectType bin_xor_assign (listType arguments);