summaryrefslogtreecommitdiff
path: root/lab_6/unity/src/foo.c
blob: 32645d64c923cf8f718415011fdac5ba0a5b0261 (plain) (blame)
1
2
3
4
5
6
#include "foo.h"

uint16_t squareNumber (uint8_t numberToBeSquared)
{
    return ((uint16_t) numberToBeSquared * numberToBeSquared);
}