Files
magic/lef/lef.h
T
Darryl L. Miles d55a2b74ac header file #ifndef guard namespace consistency (global change)
This add an effective namespace prefix to the guard ifndef
2025-07-29 10:50:32 -04:00

26 lines
510 B
C

/*
* lef.h --
*
* Contains definitions for things that are exported by the
* lef module.
*
*/
#ifndef _MAGIC__LEF__LEF_H
#define _MAGIC__LEF__LEF_H
#include "utils/magic.h"
/* Procedures for reading the technology file: */
extern void LefTechInit(void);
extern bool LefTechLine(const char *sectionName, int argc, char *argv[]);
extern void LefTechScale(int scalen, int scaled);
extern void LefTechSetDefaults(void);
/* Initialization: */
extern void LefInit(void);
#endif /* _MAGIC__LEF__LEF_H */