C Workshop
|
#include <stdbool.h>
Go to the source code of this file.
Functions | |
int | ComputeCheckDigit (int remainingId) |
Get the check digit for an Israeli ID number. More... | |
int | SumOfDigits (int number) |
Compute the sum of the digits in a number. More... | |
int ComputeCheckDigit | ( | int | remainingId | ) |
Get the check digit for an Israeli ID number.
remainingId | The first 8 digits of the ID number |
int SumOfDigits | ( | int | number | ) |
Compute the sum of the digits in a number.
number | The number to sum |