mirror of
https://gitee.com/Lamdonn/varch.git
synced 2025-12-06 08:46:42 +08:00
30 lines
1023 B
C
30 lines
1023 B
C
/*********************************************************************************************************
|
|
* ------------------------------------------------------------------------------------------------------
|
|
* file description
|
|
* ------------------------------------------------------------------------------------------------------
|
|
* \file cPatten.h
|
|
* \unit cPatten
|
|
* \brief This is a C language artistic character patterns
|
|
* \author Lamdonn
|
|
* \version v1.0.0
|
|
* \license GPL-2.0
|
|
* \copyright Copyright (C) 2023 Lamdonn.
|
|
********************************************************************************************************/
|
|
#ifndef __cPatten_H
|
|
#define __cPatten_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
/* Version infomation */
|
|
|
|
#define CPATTEN_V_MAJOR 1
|
|
#define CPATTEN_V_MINOR 0
|
|
#define CPATTEN_V_PATCH 0
|
|
|
|
int cPatten_setMask(char c);
|
|
void cPatten_showChar(char c);
|
|
void cPatten_showString(char *s);
|
|
|
|
|
|
#endif
|