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 | 1f79656dad6e44984e4a095a2aeee5aece3b76d2 (patch) | |
tree | 1b2b2f89cdf4a2394dc56b47e8f1d1b3212cc4b7 /assuan/assuan-buffer.c | |
parent | Created configuration files (diff) | |
download | gnupg-1f79656dad6e44984e4a095a2aeee5aece3b76d2.tar.gz gnupg-1f79656dad6e44984e4a095a2aeee5aece3b76d2.zip |
First chunk of code for the Assuan library
Diffstat (limited to '')
-rw-r--r-- | assuan/assuan-buffer.c | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/assuan/assuan-buffer.c b/assuan/assuan-buffer.c new file mode 100644 index 000000000..c767a0e61 --- /dev/null +++ b/assuan/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; +} + |