Skip to content

Instantly share code, notes, and snippets.

@kyriediculous
Last active July 1, 2018 03:01
Show Gist options
  • Save kyriediculous/6963fd5d99f4dbc415442cbf03d16aaa to your computer and use it in GitHub Desktop.
Save kyriediculous/6963fd5d99f4dbc415442cbf03d16aaa to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.10;
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
assert(c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// assert(b > 0); // Solidity automatically throws when dividing by 0
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
assert(b <= a);
return a - b;
}
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
assert(c >= a);
return c;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment