diff options
author | Werner Koch <[email protected]> | 2001-11-06 15:42:37 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2001-11-06 15:42:37 +0000 |
commit | 360de5aa05c035bb1c83f6e6b1ede1d6af7b425d (patch) | |
tree | fe9de7be7440968458092e297500406c2d828756 /src/assuan-buffer.c | |
parent | New repository initialized by cvs2svn. (diff) | |
download | libassuan-360de5aa05c035bb1c83f6e6b1ede1d6af7b425d.tar.gz libassuan-360de5aa05c035bb1c83f6e6b1ede1d6af7b425d.zip |
First chunk of code for the Assuan library
Diffstat (limited to '')
-rw-r--r-- | src/assuan-buffer.c | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/assuan-buffer.c b/src/assuan-buffer.c new file mode 100644 index 0000000..c767a0e --- /dev/null +++ b/src/assuan-buffer.c @@ -0,0 +1,44 @@ +/* assuan-buffer.c - read and send data + * Copyright (C) 2001 Free Software Foundation, Inc. + * + * This file is part of GnuPG. + * + * GnuPG 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. + * + * GnuPG 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA + */ + +#include <config.h> +#include <stdlib.h> +#include <stdio.h> + +#include "assuan-defs.h" + + +int +_assuan_read_line (ASSUAN_CONTEXT ctx) +{ + + + return -1; +} + + + + +int +_assuan_write_line (ASSUAN_CONTEXT ctx) +{ + return -1; +} + |