11 lines
292 B
C
11 lines
292 B
C
/*
|
|
* st_cu_0001.h - 정산수수료 공통 유틸 선언 (st_cu_0001.c 구현)
|
|
*/
|
|
#ifndef ST_CU_0001_H
|
|
#define ST_CU_0001_H
|
|
|
|
long st_cu_0001_fee(long amount, int rate_bp);
|
|
long st_cu_0001_round_unit(long amount, long unit);
|
|
int st_cu_0001_classify(long amount);
|
|
|
|
#endif /* ST_CU_0001_H */
|