{
    "Function": "getFeeAmountForC",
    "File": "src/libraries/FeeHelper.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "getTotalFee"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getFeeAmountForC(FeeParameters memory _fp, uint256 _amountPlusFee) internal pure returns (uint256) {\n        uint256 _fee = getTotalFee(_fp);\n        return (_amountPlusFee * _fee * (_fee + Constants.PRECISION)) / (Constants.PRECISION * Constants.PRECISION);\n    }"
}