1 2 3 4 5 6 7 8 9 10 11 12 13 14
// SPDX-License-Identifier: BSD-2-Clause-Patent /* * dp.h - device path helper functions * Copyright Peter Jones <pjones@redhat.com> */ #ifndef DP_H_ #define DP_H_ int is_removable_media_path(EFI_LOADED_IMAGE *li); #endif /* !DP_H_ */ // vim:fenc=utf-8:tw=75:noet