Graphviz 13.0.0~dev.20250419.1300
Loading...
Searching...
No Matches
tcl-compat.h
Go to the documentation of this file.
1
8
9#pragma once
10
11#include <limits.h>
12#include <tcl.h>
13
14// suggested Tcl 8 compatibility shims from
15// https://core.tcl-lang.org/tcl/wiki?name=Migrating+C+extensions+to+Tcl+9
16#ifndef TCL_SIZE_MAX
17#define Tcl_GetSizeIntFromObj Tcl_GetIntFromObj
18#define TCL_SIZE_MAX INT_MAX
19#define TCL_SIZE_MODIFIER ""
20
32#ifndef Tcl_Size
33#define Tcl_Size int
34#endif
35
36#endif