1 /*
2 ********************************************************************************
3 *                                USB UVC Driver
4 *
5 *                (c) Copyright 2010-2015, All winners Co,Ld.
6 *                        All Right Reserved
7 *
8 * FileName      :  assessibility.h
9 *
10 * Author        :  Kingvan.Tong
11 *
12 * Date          :  2013.03.26
13 *
14 * Description   :  USB Webcam
15 *
16 * Others        :  NULL
17 *
18 * History:
19 *       <time>      <version >      <author>            <desc>
20 *      2013.03.26      1.0           Kingvan.Tong       build this file
21 *
22 ********************************************************************************
23 */
24 #ifndef __USB_UVC_ASSESSIBILITY_H__
25 #define __USB_UVC_ASSESSIBILITY_H__
26 
27 #include  "usb_os_platform.h"
28 
29 extern unsigned int uvc_strlcpy(char *dest, const char *src, unsigned int size);
30 extern unsigned int uvc_strlcat(char *dest, const char *src, unsigned int count);
31 
32 extern unsigned short get_unaligned_le16( const void *p );
33 extern unsigned int get_unaligned_le32( const void *p );
34 
35 #endif
36 
37 
38