LLZK 0.1.0
Veridise's ZK Language IR
Loading...
Searching...
No Matches
InitDialects.h
Go to the documentation of this file.
1//===-- InitDialects.h - C API for dialect registration -----------*- C -*-===//
2//
3// Part of the LLZK Project, under the Apache License v2.0.
4// See LICENSE.txt for license information.
5// Copyright 2025 Veridise Inc.
6// SPDX-License-Identifier: Apache-2.0
7//
8//===----------------------------------------------------------------------===//
9//
10// This header declares the registration method for
11// all LLZK dialects.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLZK_C_INITDIALECTS_H
16#define LLZK_C_INITDIALECTS_H
17
18#include <mlir-c/IR.h>
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24MLIR_CAPI_EXPORTED void llzkRegisterAllDialects(MlirDialectRegistry registry);
25
26#ifdef __cplusplus
27}
28#endif
29
30#endif
MLIR_CAPI_EXPORTED void llzkRegisterAllDialects(MlirDialectRegistry registry)