2017-04-25 14:41:48 +02:00
|
|
|
/*
|
|
|
|
|
* lef.h --
|
|
|
|
|
*
|
|
|
|
|
* Contains definitions for things that are exported by the
|
|
|
|
|
* lef module.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _LEF_H
|
|
|
|
|
#define _LEF_H
|
|
|
|
|
|
|
|
|
|
#include "utils/magic.h"
|
|
|
|
|
|
|
|
|
|
/* Procedures for reading the technology file: */
|
|
|
|
|
|
|
|
|
|
extern void LefTechInit();
|
|
|
|
|
extern bool LefTechLine();
|
|
|
|
|
extern void LefTechScale();
|
2022-11-20 21:15:04 +01:00
|
|
|
extern void LefTechSetDefaults();
|
2017-04-25 14:41:48 +02:00
|
|
|
|
|
|
|
|
/* Initialization: */
|
|
|
|
|
|
|
|
|
|
extern void LefInit();
|
|
|
|
|
|
|
|
|
|
#endif /* _LEF_H */
|