]> Nishi Git Mirror - libw3.git/commitdiff
forgot to add
authornishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Wed, 14 Feb 2024 05:34:53 +0000 (05:34 +0000)
committernishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Wed, 14 Feb 2024 05:34:53 +0000 (05:34 +0000)
git-svn-id: file:///raid/svn-main/nishi-libw3/trunk@216 d27a3e52-49c5-7645-884c-6793ebffc270

Library/NNTP.c [new file with mode: 0644]
Library/W3NNTP.h [new file with mode: 0644]
W3Version.h.p

diff --git a/Library/NNTP.c b/Library/NNTP.c
new file mode 100644 (file)
index 0000000..e97e801
--- /dev/null
@@ -0,0 +1,13 @@
+/* $Id$ */
+#include "W3NNTP.h"
+
+#include "W3Core.h"
+#include "W3DNS.h"
+#include "W3Util.h"
+
+#include <stdlib.h>
+#include <string.h>
+
+extern int strcasecmp(const char* s1, const char* s2);
+
+void __W3_NNTP_Request(struct W3* w3) { __W3_Debug("LibW3-NNTP", "Sending the request"); }
diff --git a/Library/W3NNTP.h b/Library/W3NNTP.h
new file mode 100644 (file)
index 0000000..2d3bd53
--- /dev/null
@@ -0,0 +1,17 @@
+/* $Id$ */
+#ifndef __W3NNTP_H__
+#define __W3NNTP_H__
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include "W3Core.h"
+
+void __W3_NNTP_Request(struct W3* w3);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
index 8108a55babf3f3604f5f46439bce0f97a5e8faf0..1856d62d0fe630a543557f946fa8f1bd0325f640 100644 (file)
@@ -6,7 +6,7 @@
 extern "C" {
 #endif
 
-#define LIBW3_VERSION "2.12" \
+#define LIBW3_VERSION "2.12A" \
 SUFFIX
 
 #ifdef __cplusplus