void print_udev_key_value()

in src/identify_udev.c [17:26]


void print_udev_key_value(const char *key, const char *value)
{
    printf("AZURE_DISK_");
    while (*key)
    {
        putchar(toupper((unsigned char)*key));
        key++;
    }
    printf("=%s\n", value);
}