Gitweb links:

...log 
http://git.netsurf-browser.org/libwapcaplet.git/shortlog/f9db354827f8e88457dd8a0ccf36d8383f715037
...commit 
http://git.netsurf-browser.org/libwapcaplet.git/commit/f9db354827f8e88457dd8a0ccf36d8383f715037
...tree 
http://git.netsurf-browser.org/libwapcaplet.git/tree/f9db354827f8e88457dd8a0ccf36d8383f715037

The branch, master has been updated
       via  f9db354827f8e88457dd8a0ccf36d8383f715037 (commit)
      from  45e8eec9340f6780313346862da0d75f4a968f86 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/libwapcaplet.git/commit/?id=f9db354827f8e88457dd8a0ccf36d8383f715037
commit f9db354827f8e88457dd8a0ccf36d8383f715037
Author: Michael Drake <t...@netsurf-browser.org>
Commit: Michael Drake <t...@netsurf-browser.org>

    Enable lwc_string_caseless_hash_value function, and include stddef.h for 
NULL.

diff --git a/include/libwapcaplet/libwapcaplet.h 
b/include/libwapcaplet/libwapcaplet.h
index 29cd47e..d8cc841 100644
--- a/include/libwapcaplet/libwapcaplet.h
+++ b/include/libwapcaplet/libwapcaplet.h
@@ -16,6 +16,7 @@ extern "C"
 
 #include <sys/types.h>
 #include <stdbool.h>
+#include <stddef.h>
 #include <stdint.h>
 #include <assert.h>
 
@@ -259,7 +260,6 @@ lwc__intern_caseless_string(lwc_string *str);
  * @return Result of operation, if not ok then value pointed to by \a ret will
  *      not be valid.
  */
-/*
 static inline lwc_error lwc_string_caseless_hash_value(
        lwc_string *str, lwc_hash *hash)
 {
@@ -273,7 +273,7 @@ static inline lwc_error lwc_string_caseless_hash_value(
        *hash = str->insensitive->hash;
        return lwc_error_ok;
 }
-*/
+
 
 /**
  * Iterate the context and return every string in it.


-----------------------------------------------------------------------

Summary of changes:
 include/libwapcaplet/libwapcaplet.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/libwapcaplet/libwapcaplet.h 
b/include/libwapcaplet/libwapcaplet.h
index 29cd47e..d8cc841 100644
--- a/include/libwapcaplet/libwapcaplet.h
+++ b/include/libwapcaplet/libwapcaplet.h
@@ -16,6 +16,7 @@ extern "C"
 
 #include <sys/types.h>
 #include <stdbool.h>
+#include <stddef.h>
 #include <stdint.h>
 #include <assert.h>
 
@@ -259,7 +260,6 @@ lwc__intern_caseless_string(lwc_string *str);
  * @return Result of operation, if not ok then value pointed to by \a ret will
  *      not be valid.
  */
-/*
 static inline lwc_error lwc_string_caseless_hash_value(
        lwc_string *str, lwc_hash *hash)
 {
@@ -273,7 +273,7 @@ static inline lwc_error lwc_string_caseless_hash_value(
        *hash = str->insensitive->hash;
        return lwc_error_ok;
 }
-*/
+
 
 /**
  * Iterate the context and return every string in it.


-- 
String internment library

_______________________________________________
netsurf-commits mailing list
netsurf-commits@netsurf-browser.org
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to