udunits.h | udunits.h | |||
---|---|---|---|---|
skipping to change at line 73 | skipping to change at line 73 | |||
/* | /* | |||
* Initialize the units(3) package. | * Initialize the units(3) package. | |||
*/ | */ | |||
extern int utInit PROTO(( | extern int utInit PROTO(( | |||
const char *path | const char *path | |||
)); | )); | |||
/* | /* | |||
* Indicate if the units(3) package has been initialized. | * Indicate if the units(3) package has been initialized. | |||
*/ | */ | |||
extern int utIsInit PROTO(( | extern int utIsInit PROTO((void)); | |||
)); | ||||
/* | /* | |||
* Initialize a unit-structure. | * Initialize a unit-structure. | |||
*/ | */ | |||
extern void utIni PROTO(( | extern void utIni PROTO(( | |||
utUnit* const unit | utUnit* const unit | |||
)); | )); | |||
/* | /* | |||
* Decode a formatted unit specification into a unit-structure. | * Decode a formatted unit specification into a unit-structure. | |||
skipping to change at line 248 | skipping to change at line 247 | |||
/* | /* | |||
* Free the resources of a unit-structure. | * Free the resources of a unit-structure. | |||
*/ | */ | |||
extern void utFree PROTO(( | extern void utFree PROTO(( | |||
utUnit* const unit | utUnit* const unit | |||
)); | )); | |||
/* | /* | |||
* Terminate use of this package. | * Terminate use of this package. | |||
*/ | */ | |||
extern void utTerm PROTO(()); | extern void utTerm PROTO((void)); | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
} | } | |||
#endif | #endif | |||
#endif /* UT_UNITS_H_INCLUDED not defined */ | #endif /* UT_UNITS_H_INCLUDED not defined */ | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 2 lines changed or added | |||