📄 carddeck.h
字号:
/************************************************
*
* $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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -