11 lines
298 B
C
11 lines
298 B
C
/*
|
|
* mg_cu_0005.h - 전문게이트웨이 공통 유틸 선언 (mg_cu_0005.c 구현)
|
|
*/
|
|
#ifndef MG_CU_0005_H
|
|
#define MG_CU_0005_H
|
|
|
|
long mg_cu_0005_fee(long amount, int rate_bp);
|
|
long mg_cu_0005_round_unit(long amount, long unit);
|
|
int mg_cu_0005_classify(long amount);
|
|
|
|
#endif /* MG_CU_0005_H */
|