carddeck.h

来自「< OSEKVDX汽车电子嵌入式软件编程技术>>配套光盘,搞汽」· C头文件 代码 · 共 35 行

H
35
字号
/************************************************
*
*	$Copyright    2001 Joseph J. Lemieux  ALL RIGHTS RESERVED. $
*
*	$Filename: C:\OSEKBook\src\CH05\inc\carddeck.h $
*
*	Description: This header file defines the 
*                    public types and interfaces for
*                    use in managing the deck of cards.	
*
************************************************/
#ifndef CARDDECKH
#define CARDDECKH

/************************************************
*
*   Function:     DealCard
*
*   Inputs:       None
*
*   Outputs:      Displays next card on LCD
*
*   Returns:      Number of cards left in deck.
*
*   Description:  Pulls next card from deck and
*                 displays it on the LCD. Counts the 
*                 number of cards left in the deck.
*                 If no cards are left, it returns 0
*                 immediately.
*
************************************************/
UINT8 DealCard(void);

#endif

⌨️ 快捷键说明

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