xref: /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/json.h (revision 627f7eb200a4419d89b531d55fccd2ee3ffdcde0)
1 
2 /* Compiler implementation of the D programming language
3  * Copyright (C) 1999-2019 by The D Language Foundation, All Rights Reserved
4  * written by Walter Bright
5  * http://www.digitalmars.com
6  * Distributed under the Boost Software License, Version 1.0.
7  * http://www.boost.org/LICENSE_1_0.txt
8  * https://github.com/dlang/dmd/blob/master/src/dmd/json.h
9  */
10 
11 #pragma once
12 
13 #include "arraytypes.h"
14 
15 struct OutBuffer;
16 
17 void json_generate(OutBuffer *, Modules *);
18