File: std.h

package info (click to toggle)
lsp-plugins 1.2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 91,856 kB
  • sloc: cpp: 427,831; xml: 57,779; makefile: 9,961; php: 1,005; sh: 18
file content (16 lines) | stat: -rw-r--r-- 217 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "macros.h"

#ifdef CLAP_HAS_CXX11
#   include <cstdint>
#else
#   include <stdint.h>
#endif

#ifdef __cplusplus
#   include <cstddef>
#else
#   include <stddef.h>
#   include <stdbool.h>
#endif