-
Notifications
You must be signed in to change notification settings - Fork 1
/
blockfile_tcl.h
35 lines (29 loc) · 1.34 KB
/
blockfile_tcl.h
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
/*
Copyright (C) 2010 The ESPResSo project
Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009,2010 Max-Planck-Institute for Polymer Research, Theory Group, PO Box 3148, 55021 Mainz, Germany
This file is part of ESPResSo.
ESPResSo 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 3 of the License, or
(at your option) any later version.
ESPResSo 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, see <http://www.gnu.org/licenses/>.
*/
/** \file blockfile_tcl.h
Contains only the tcl interface for block coded files.
It is the header file for \ref blockfile_tcl.c "blockfile_tcl.c" and provides the
tcl command \ref tcl_blockfile.
*/
#ifndef BLOCKFILE_TCL_H
#define BLOCKFILE_TCL_H
#include "config.h"
#include <tcl.h>
/** Implementation of the Tcl command \ref tcl_blockfile. Allows to read and write
blockfile comfortably from Tcl. */
int blockfile(ClientData data, Tcl_Interp *interp,
int argc, char **argv);
#endif