16 lines
298 B
C
16 lines
298 B
C
|
/* Copyright (c) 2019 ACK Project.
|
||
|
* See the copyright notice in the ACK home directory,
|
||
|
* in the file "Copyright".
|
||
|
*
|
||
|
* Created on: 2019-02-09
|
||
|
*
|
||
|
*/
|
||
|
#ifndef CH3MON_H_
|
||
|
#define CH3MON_H_
|
||
|
|
||
|
#include "arith.h"
|
||
|
|
||
|
void ch3mon(int oper, register arith *pval, int *puns);
|
||
|
|
||
|
#endif /* CH3MON_H_ */
|