| Top | 
| int | fdisk_parse_version_string () | 
| int | fdisk_get_library_version () | 
| int | fdisk_get_library_features () | 
| #define | LIBFDISK_MAJOR_VERSION | 
| #define | LIBFDISK_MINOR_VERSION | 
| #define | LIBFDISK_PATCH_VERSION | 
| #define | LIBFDISK_VERSION | 
int
fdisk_get_library_features (const char ***features);
features  | 
returns a pointer to the static array of strings, the array is terminated by NULL.  | 
number of items in the features array not including the last NULL, or less than zero in case of error
Example:
1 2 3 4  | 
        const char *features; fdisk_get_library_features(&features); while (features && *features) printf("%s\n", *features++);  |