C Workshop
ValidateId.h
Go to the documentation of this file.
1 #pragma once
2 #include <stdbool.h>
3 
11 static const int ID_MAX_LENGTH = 9;
12 
19 int ComputeCheckDigit(int remainingId);
20 
27 int SumOfDigits(int number);
int SumOfDigits(int number)
Compute the sum of the digits in a number.
Definition: ValidateId.c:31
int ComputeCheckDigit(int remainingId)
Get the check digit for an Israeli ID number.
Definition: ValidateId.c:4