Added test case for package diagram from directory structure for plain C

This commit is contained in:
Bartek Kryza
2023-05-26 21:46:23 +02:00
parent 2a29968f09
commit ba32b54395
12 changed files with 118 additions and 2 deletions

14
tests/t30011/app/app.h Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#include "../libraries/lib1/lib1.h"
#include "../libraries/lib2/lib2.h"
#include "../libraries/lib3/lib3.h"
#include "../libraries/lib4/lib4.h"
struct t30011_App {
struct t30011_A a;
struct t30011_B *b;
enum t30011_E e;
};
void c(struct t30011_App *app, struct t30011_C *c) { }