]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/plr/include/uu.h
update
[l4.git] / l4 / pkg / plr / include / uu.h
1 /**
2  * \file   ferret/examples/merge_mon/uu.h
3  * \brief  UUencoding functions, mostly from jdb
4  *
5  * \date   14/12/2005
6  * \author Martin Pohlack  <mp26@os.inf.tu-dresden.de>
7  */
8 /*
9  * (c) 2005-2009 Technische Universität Dresden
10  * This file is part of TUD:OS and distributed under the terms of the
11  * GNU General Public License 2.
12  * Please see the COPYING-GPL-2 file for details.
13  */
14 #ifndef __FERRET_EXAMPLES_MERGE_MON_UU_H_
15 #define __FERRET_EXAMPLES_MERGE_MON_UU_H_
16
17 EXTERN_C_BEGIN
18
19 #include <stddef.h>
20
21 //void uu_dump(const char * filename, const buf_t *buf);
22 void uu_dumpz(const char * filename, const unsigned char * s_buf, size_t len);
23 void uu_dumpz_ringbuffer(const char * filename,
24                          const void * buffer, size_t buffer_len,
25                          unsigned start_offset, size_t transfer_size);
26
27 EXTERN_C_END
28
29 #endif