summaryrefslogtreecommitdiff
path: root/openpicc/application/usb_print.h
blob: 9186dc97231b65c7e7883643653b020139f2d744 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef USB_PRINT_H_
#define USB_PRINT_H_

extern void usb_print_buffer(const char* buffer, int start, int stop);
extern int usb_print_buffer_f(const char* buffer, int start, int stop, int flush);
extern void usb_print_string(const char *string);
extern int usb_print_string_f(const char* string, int flush);
extern void usb_print_char(const char c);
extern int usb_print_char_f(const char c, int flush);
extern void usb_print_flush(void);
extern int usb_print_get_default_flush(void);
extern int usb_print_set_default_flush(int flush);
extern void usb_print_init(void);

#endif /*USB_PRINT_H_*/
personal git repositories of Harald Welte. Your mileage may vary