From 3604f3557b3f61c9930c4f6ac372d9672f6b1239 Mon Sep 17 00:00:00 2001 From: "Justin R. Cutler" Date: Sat, 2 Apr 2016 16:37:31 -0400 Subject: [PATCH] Add doxygen file headers --- src/coroutine.c | 4 ++++ test/coroutine.c | 4 ++++ threadless/coroutine.h | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/src/coroutine.c b/src/coroutine.c index 614a9da..b18cf7d 100644 --- a/src/coroutine.c +++ b/src/coroutine.c @@ -3,6 +3,10 @@ * Licensed under the MIT License. See LICENSE file in the project root for * full license information. */ +/** @file + * coroutine interface implementation + * @author Justin R. Cutler + */ /* stack_t (in ucontext.h) */ #define _BSD_SOURCE diff --git a/test/coroutine.c b/test/coroutine.c index e06b1e2..f10026b 100644 --- a/test/coroutine.c +++ b/test/coroutine.c @@ -3,6 +3,10 @@ * Licensed under the MIT License. See LICENSE file in the project root for * full license information. */ +/** @file + * coroutine interface test + * @author Justin R. Cutler + */ /* printf, perror */ #include diff --git a/threadless/coroutine.h b/threadless/coroutine.h index 177e85f..f1105b8 100644 --- a/threadless/coroutine.h +++ b/threadless/coroutine.h @@ -3,6 +3,10 @@ * Licensed under the MIT License. See LICENSE file in the project root for * full license information. */ +/** @file + * coroutine interface definition + * @author Justin R. Cutler + */ #ifndef THREADLESS_COROUTINE_H #define THREADLESS_COROUTINE_H