26 lines
393 B
C
26 lines
393 B
C
/*
|
|
* 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();
|
|
extern void LefTechSetDefaults();
|
|
|
|
/* Initialization: */
|
|
|
|
extern void LefInit();
|
|
|
|
#endif /* _LEF_H */
|