(root)/
gcc-13.2.0/
gcc/
d/
dmd/
hdrgen.h
       1  
       2  /* Compiler implementation of the D programming language
       3   * Copyright (C) 1999-2023 by The D Language Foundation, All Rights Reserved
       4   * written by Dave Fladebo
       5   * https://www.digitalmars.com
       6   * Distributed under the Boost Software License, Version 1.0.
       7   * https://www.boost.org/LICENSE_1_0.txt
       8   * https://github.com/dlang/dmd/blob/master/src/dmd/hdrgen.h
       9   */
      10  
      11  #pragma once
      12  
      13  #include "globals.h"
      14  #include "mtype.h"
      15  
      16  class Module;
      17  
      18  void genhdrfile(Module *m);
      19  void genCppHdrFiles(Modules &ms);
      20  void moduleToBuffer(OutBuffer *buf, Module *m);
      21  const char *parametersTypeToChars(ParameterList pl);