Advertisement
blackswords

ascii lib header

May 27th, 2012
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.30 KB | None | 0 0
  1. /****************************************Copyright (c)**************************************************                        
  2.  **
  3.  **                                 http://www.powermcu.com
  4.  **
  5.  **--------------File Info-------------------------------------------------------------------------------
  6.  ** File name:          AsciiLib.h
  7.  ** Descriptions:       None
  8.  **
  9.  **------------------------------------------------------------------------------------------------------
  10.  ** Created by:         AVRman
  11.  ** Created date:       2010-11-2
  12.  ** Version:                1.0
  13.  ** Descriptions:       The original version
  14.  **
  15.  **------------------------------------------------------------------------------------------------------
  16.  ** Modified by:
  17.  ** Modified date:
  18.  ** Version:
  19.  ** Descriptions:
  20.  ********************************************************************************************************/
  21.  
  22. #ifndef __AsciiLib_H
  23. #define __AsciiLib_H  
  24.  
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28.  
  29. void GetASCIICode(unsigned char* pBuffer,unsigned char ASCII);
  30.  
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34.  
  35. #endif
  36.  
  37.  
  38. /*********************************************************************************************************
  39.       END FILE
  40.  *********************************************************************************************************/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement