16 lines
333 B
C
16 lines
333 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 CH3BIN_H_
|
|
#define CH3BIN_H_
|
|
|
|
#include "arith.h"
|
|
|
|
void ch3bin(register arith *pval, int *pis_uns, int oper, register arith val, int is_uns);
|
|
|
|
#endif /* CH3BIN_H_ */
|