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
faace175
Commit
faace175
authored
Aug 06, 2010
by
Rusty Russell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add author and maintainer fields.
parent
d7c0cfeb
Changes
25
Hide whitespace changes
Inline
Side-by-side
Showing
25 changed files
with
29 additions
and
0 deletions
+29
-0
ccan/alignof/_info
ccan/alignof/_info
+1
-0
ccan/alloc/_info
ccan/alloc/_info
+1
-0
ccan/antithread/_info
ccan/antithread/_info
+1
-0
ccan/array_size/_info
ccan/array_size/_info
+1
-0
ccan/asearch/_info
ccan/asearch/_info
+1
-0
ccan/asort/_info
ccan/asort/_info
+1
-0
ccan/build_assert/_info
ccan/build_assert/_info
+1
-0
ccan/check_type/_info
ccan/check_type/_info
+1
-0
ccan/container_of/_info
ccan/container_of/_info
+1
-0
ccan/crcsync/_info
ccan/crcsync/_info
+1
-0
ccan/endian/_info
ccan/endian/_info
+1
-0
ccan/grab_file/_info
ccan/grab_file/_info
+1
-0
ccan/hash/_info
ccan/hash/_info
+2
-0
ccan/hashtable/_info
ccan/hashtable/_info
+1
-0
ccan/likely/_info
ccan/likely/_info
+1
-0
ccan/list/_info
ccan/list/_info
+1
-0
ccan/noerr/_info
ccan/noerr/_info
+1
-0
ccan/read_write_all/_info
ccan/read_write_all/_info
+1
-0
ccan/short_types/_info
ccan/short_types/_info
+1
-0
ccan/sparse_bsearch/_info
ccan/sparse_bsearch/_info
+3
-0
ccan/str/_info
ccan/str/_info
+1
-0
ccan/str_talloc/_info
ccan/str_talloc/_info
+1
-0
ccan/talloc_link/_info
ccan/talloc_link/_info
+1
-0
ccan/tap/_info
ccan/tap/_info
+2
-0
ccan/typesafe_cb/_info
ccan/typesafe_cb/_info
+1
-0
No files found.
ccan/alignof/_info
View file @
faace175
...
...
@@ -33,6 +33,7 @@
* }
*
* Licence: LGPL (2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
ccan/alloc/_info
View file @
faace175
...
...
@@ -93,6 +93,7 @@
* }
*
* Licence: LGPL (2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
ccan/antithread/_info
View file @
faace175
...
...
@@ -8,6 +8,7 @@
* Threads suck. Antithreads try not to. FIXME.
*
* Licence: LGPL (2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
ccan/array_size/_info
View file @
faace175
...
...
@@ -26,6 +26,7 @@
* }
*
* Licence: LGPL (2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
ccan/asearch/_info
View file @
faace175
...
...
@@ -11,6 +11,7 @@
* This version uses macros to be typesafe on platforms which support it.
*
* Licence: LGPL
* Author: Rusty Russell <rusty@rustcorp.com.au>
*
* Example:
* #include <ccan/asearch/asearch.h>
...
...
ccan/asort/_info
View file @
faace175
...
...
@@ -12,6 +12,7 @@
* asort does both.
*
* Licence: LGPL
* Author: Rusty Russell <rusty@rustcorp.com.au>
*
* Example:
* #include <ccan/asort/asort.h>
...
...
ccan/build_assert/_info
View file @
faace175
...
...
@@ -34,6 +34,7 @@
* }
*
* Licence: LGPL (2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
ccan/check_type/_info
View file @
faace175
...
...
@@ -15,6 +15,7 @@
* different size.
*
* Licence: LGPL (2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
ccan/container_of/_info
View file @
faace175
...
...
@@ -42,6 +42,7 @@
* }
*
* Licence: LGPL (2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
ccan/crcsync/_info
View file @
faace175
...
...
@@ -68,6 +68,7 @@
* }
*
* Licence: LGPL (v2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
ccan/endian/_info
View file @
faace175
...
...
@@ -37,6 +37,7 @@
* }
*
* Licence: LGPL (2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
ccan/grab_file/_info
View file @
faace175
...
...
@@ -36,6 +36,7 @@
* }
*
* Licence: LGPL (2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
ccan/hash/_info
View file @
faace175
...
...
@@ -13,6 +13,8 @@
* and on any version of this package.
*
* Licence: Public Domain
* Maintainer: Rusty Russell <rusty@rustcorp.com.au>
* Author: Bob Jenkins <bob_jenkins@burtleburtle.net>
*/
int main(int argc, char *argv[])
{
...
...
ccan/hashtable/_info
View file @
faace175
...
...
@@ -102,6 +102,7 @@
* }
*
* Licence: GPLv2 (or later)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
ccan/likely/_info
View file @
faace175
...
...
@@ -10,6 +10,7 @@
* compiler and the reader.
*
* Licence: LGPL (2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*
* Example:
* #include <ccan/likely/likely.h>
...
...
ccan/list/_info
View file @
faace175
...
...
@@ -53,6 +53,7 @@
* }
*
* Licence: LGPL (2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
ccan/noerr/_info
View file @
faace175
...
...
@@ -46,6 +46,7 @@
* }
*
* Licence: LGPL (2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
ccan/read_write_all/_info
View file @
faace175
...
...
@@ -29,6 +29,7 @@
* }
*
* Licence: LGPL (2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
ccan/short_types/_info
View file @
faace175
...
...
@@ -66,6 +66,7 @@
* }
*
* Licence: LGPL (2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
ccan/sparse_bsearch/_info
View file @
faace175
...
...
@@ -49,6 +49,9 @@
* }
* return 0;
* }
*
* Licence: LGPL (2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
ccan/str/_info
View file @
faace175
...
...
@@ -24,6 +24,7 @@
* }
*
* Licence: LGPL (2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
ccan/str_talloc/_info
View file @
faace175
...
...
@@ -36,6 +36,7 @@
* }
*
* Licence: LGPL (2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
ccan/talloc_link/_info
View file @
faace175
...
...
@@ -130,6 +130,7 @@
* }
*
* Licence: GPL (2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
ccan/tap/_info
View file @
faace175
...
...
@@ -42,6 +42,8 @@
* ok1(strcmp(ab, a) > 0);
* return exit_status();
* }
*
* Maintainer: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
ccan/typesafe_cb/_info
View file @
faace175
...
...
@@ -134,6 +134,7 @@
* }
*
* Licence: LGPL (2 or any later version)
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
{
...
...
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