Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
ccan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mirror
ccan
Commits
942f2788
Commit
942f2788
authored
Sep 26, 2011
by
Rusty Russell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
str: relicense to public domain.
LGPL is overkill for trivial wrappers like this.
parent
98d77987
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
2 additions
and
6 deletions
+2
-6
ccan/str/LICENSE
ccan/str/LICENSE
+0
-1
ccan/str/_info
ccan/str/_info
+1
-1
ccan/str/debug.c
ccan/str/debug.c
+0
-1
ccan/str/str.c
ccan/str/str.c
+0
-1
ccan/str/str.h
ccan/str/str.h
+1
-1
ccan/str/str_debug.h
ccan/str/str_debug.h
+0
-1
No files found.
ccan/str/LICENSE
deleted
120000 → 0
View file @
98d77987
../../licenses/LGPL-2.1
\ No newline at end of file
ccan/str/_info
View file @
942f2788
...
...
@@ -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[])
...
...
ccan/str/debug.c
View file @
942f2788
/* Licensed under LGPLv2.1+ - see LICENSE file for details */
#include "config.h"
#include <ccan/str/str_debug.h>
#include <assert.h>
...
...
ccan/str/str.c
View file @
942f2788
/* Licensed under LGPLv2.1+ - see LICENSE file for details */
#include <ccan/str/str.h>
size_t
strcount
(
const
char
*
haystack
,
const
char
*
needle
)
...
...
ccan/str/str.h
View file @
942f2788
/*
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"
...
...
ccan/str/str_debug.h
View file @
942f2788
/* Licensed under LGPLv2.1+ - see LICENSE file for details */
#ifndef CCAN_STR_DEBUG_H
#define CCAN_STR_DEBUG_H
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment