Commit 942f2788 authored by Rusty Russell's avatar Rusty Russell

str: relicense to public domain.

LGPL is overkill for trivial wrappers like this.
parent 98d77987
../../licenses/LGPL-2.1
\ No newline at end of file
......@@ -35,7 +35,7 @@
* return 0;
* }
*
* License: LGPL (v2.1 or any later version)
* License: Public domain
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
......
/* Licensed under LGPLv2.1+ - see LICENSE file for details */
#include "config.h"
#include <ccan/str/str_debug.h>
#include <assert.h>
......
/* Licensed under LGPLv2.1+ - see LICENSE file for details */
#include <ccan/str/str.h>
size_t strcount(const char *haystack, const char *needle)
......
/* Licensed under LGPLv2.1+ - see LICENSE file for details */
/* Placed into the public domain. */
#ifndef CCAN_STR_H
#define CCAN_STR_H
#include "config.h"
......
/* Licensed under LGPLv2.1+ - see LICENSE file for details */
#ifndef CCAN_STR_DEBUG_H
#define CCAN_STR_DEBUG_H
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment