-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scanf_code.h
32 lines (25 loc) · 1.04 KB
/
scanf_code.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
******************************************************************************
* @file scanf_code.h
* @author Basavaraju B V
* @version V1.0.0
* @date 10-June-2013
* @brief Header for scanf_code.c
*
******************************************************************************
*/
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __SCANF_CODE_H
#define __SCANF_CODE_H
/* Includes ------------------------------------------------------------------*/
#include <stdio.h>
#include <stdarg.h>
//#include <strings.h>
#include <stdlib.h>
#include "atmega328p_usart.h"
/* Exported types ------------------------------------------------------------*/
/* Exported constants --------------------------------------------------------*/
/* Exported macro ------------------------------------------------------------*/
/* Exported functions ------------------------------------------------------- */
extern int scan(const char* formats, ... );
#endif // __SCANF_CODE_H