| 12345678910111213141516171819202122 |
- /*
- * Copyright (c) 2022, sakumisu
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #ifndef USBD_PRINTER_H
- #define USBD_PRINTER_H
- #include "usb_printer.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- /* Alloc printer interface driver */
- struct usbd_interface *usbd_printer_alloc_intf(void);
- #ifdef __cplusplus
- }
- #endif
- #endif /* USBD_PRINTER_H */
|