Warning: This is the manual of the legacy Guile 2.2 series. You may want to read the manual of the current stable series instead.
Next: Common Feature Symbols, Up: Feature Tracking [Contents][Index]
To check whether a particular feature is available, use the
provided?
procedure:
Return #t
if the specified feature is available, otherwise
#f
.
To advertise a feature from your own Scheme code, you can use the
provide
procedure:
Add feature to the list of available features in this Guile process.
For C code, the equivalent function takes its feature name as a
char *
argument for convenience:
Add a symbol with name str to the list of available features in this Guile process.