• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..13-Jun-2021-

trampoline_r/H03-May-2022-3,8432,739

vacall_r/H13-Jun-2021-16,56715,337

COPYINGH A D20-Dec-201617.7 KiB341282

MIGRATIONH A D29-Jul-20172.8 KiB8055

Makefile.inH A D13-Jun-20218.1 KiB237169

Makefile.maintH A D03-Sep-2017736 3017

PLATFORMSH A D12-Jun-20212.5 KiB4442

READMEH A D17-Sep-20182 KiB6744

callback-compat.cH A D17-Sep-2018881 253

callback-libapi.cH A D17-Sep-20181.6 KiB5426

callback.3H A D29-Jul-20177.3 KiB274223

callback.hH A D17-Sep-20182.9 KiB9123

callback.manH A D13-Jun-20218.7 KiB165116

minitests-c++.ccH A D17-Sep-2018730 191

minitests.cH A D17-Sep-2018758 202

test1.cH A D17-Sep-20181.4 KiB5327

tests.cH A D12-Jun-202180.5 KiB2,3872,217

README

1callback - closures with variable arguments as first-class C functions
2
3This library implements closures with variable arguments and variable return
4values as first-class C functions. A closure consists of a regular C function
5and a piece of data which gets passed to the C function when the closure is
6called.
7
8This library is especially suited to the implementation of call-back functions
9in embedded interpreters.
10
11
12Installation instructions:
13
14    Configure the parent directory. Then:
15        cd callback
16        make
17        make check
18        make install
19
20
21Files in this package:
22
23    Documentation:
24
25        README          this text
26        COPYING         free software license
27        PLATFORMS       list of supported platforms
28        MIGRATION       migration guide from vacall+trampoline
29        callback.3      manual page in Unix man format
30        callback.man    manual page
31        callback.html   manual page in HTML format
32
33    Source:
34
35        callback.h      include file
36        tests.c         test program
37        vacall_r/*      a reentrant version of the vacall package
38        trampoline_r/*  a reentrant version of the trampoline package
39
40    Building:
41
42        Makefile.in     Makefile master
43
44    Porting:
45
46        Makefile.devel  developer's Makefile
47        call-used-registers.txt  table of call-used registers on different CPUs
48
49
50Copyright notice:
51
52Copyright 1995-2017 Bruno Haible <bruno@clisp.org>
53
54This program is free software: you can redistribute it and/or modify
55it under the terms of the GNU General Public License as published by
56the Free Software Foundation; either version 2 of the License, or
57(at your option) any later version.
58
59This program is distributed in the hope that it will be useful,
60but WITHOUT ANY WARRANTY; without even the implied warranty of
61MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
62GNU General Public License for more details.
63
64You should have received a copy of the GNU General Public License
65along with this program.  If not, see <https://www.gnu.org/licenses/>.
66
67