11 lines
283 B
C
11 lines
283 B
C
/*
|
|
* ac_cu_0005.h - 매입 공통 유틸 선언 (ac_cu_0005.c 구현)
|
|
*/
|
|
#ifndef AC_CU_0005_H
|
|
#define AC_CU_0005_H
|
|
|
|
long ac_cu_0005_fee(long amount, int rate_bp);
|
|
long ac_cu_0005_round_unit(long amount, long unit);
|
|
int ac_cu_0005_classify(long amount);
|
|
|
|
#endif /* AC_CU_0005_H */
|