Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 44 additions & 18 deletions c-api/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
62 changes: 44 additions & 18 deletions c-api/tests/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion c-api/tests/src/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include <string.h>
#include <stdbool.h>
#include "deps/picotest/picotest.h"
#include "../../include/comrak.h"
#include "../../include/comrak_ffi.h"

#include "test.h"

Expand Down
2 changes: 1 addition & 1 deletion c-api/tests/src/test.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef TESTS_H
#define TESTS_H

#include "../../include/comrak.h"
#include "../../include/comrak_ffi.h"

void test_comrak_basic();

Expand Down
2 changes: 1 addition & 1 deletion c-api/tests/src/test_comrak_basic.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <string.h>
#include <stdio.h>

#include "../../include/comrak.h"
#include "../../include/comrak_ffi.h"
#include "deps/picotest/picotest.h"
#include "test.h"
#include "test_util.h"
Expand Down
2 changes: 1 addition & 1 deletion c-api/tests/src/test_comrak_extension_options.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <string.h>
#include <stdio.h>

#include "../../include/comrak.h"
#include "../../include/comrak_ffi.h"
#include "deps/picotest/picotest.h"
#include "test.h"
#include "test_util.h"
Expand Down
2 changes: 1 addition & 1 deletion c-api/tests/src/test_comrak_parse_options.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <string.h>
#include <stdio.h>

#include "../../include/comrak.h"
#include "../../include/comrak_ffi.h"
#include "deps/picotest/picotest.h"
#include "test.h"
#include "test_util.h"
Expand Down
2 changes: 1 addition & 1 deletion c-api/tests/src/test_comrak_render_options.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <string.h>
#include <stdio.h>

#include "../../include/comrak.h"
#include "../../include/comrak_ffi.h"
#include "deps/picotest/picotest.h"
#include "test.h"
#include "test_util.h"
Expand Down
2 changes: 1 addition & 1 deletion c-api/tests/src/test_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <stdlib.h>
#include <string.h>

#include "../../include/comrak.h"
#include "../../include/comrak_ffi.h"

#define str_eq(actual, expected) { \
ok((actual).data != NULL); \
Expand Down