You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #include "age.h"
-
- void setAge(uint8_t age)
- {
- g_age = age;
- }
- uint8_t getAge(void)
- {
- g_age = g_age+3;
- return g_age+2;
- }
|