From 1f79656dad6e44984e4a095a2aeee5aece3b76d2 Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Tue, 6 Nov 2001 15:42:37 +0000 Subject: First chunk of code for the Assuan library --- assuan/assuan-buffer.c | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 assuan/assuan-buffer.c (limited to 'assuan/assuan-buffer.c') 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 +#include +#include + +#include "assuan-defs.h" + + +int +_assuan_read_line (ASSUAN_CONTEXT ctx) +{ + + + return -1; +} + + + + +int +_assuan_write_line (ASSUAN_CONTEXT ctx) +{ + return -1; +} + -- cgit v1.2.3