template.c

来自「ARM_CORTEX-M3应用实例开发详解光盘」· C语言 代码 · 共 31 行

C
31
字号
/******************************* (C) Embest ***********************************
* File Name          : template.c
* Author             : tary
* Date               : 2009-03-03
* Version            : 0.3
* Description        : C文件模板
******************************************************************************/

/* Includes -----------------------------------------------------------------*/
#include <stdio.h>
#include "template.h"

/* Variables ----------------------------------------------------------------*/
int template_module_variable;


/*=============================================================================
* Function	: 
* Description	: 
* Input Para	: 
* Output Para	: 
* Return Value  : 
=============================================================================*/
int template_start(char* buf, int size) {
	// 返回值>=0表示成功
	// <0 表示错误码
	return 0;
}

/************************************END OF FILE******************************/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?