Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Cadastrar
Acessar
dylan
/
testTelpo
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Pull requests
0
Versões
3
Wiki
Atividade
telpo test github
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
20
Commits
4
Branches
49KB
Tag:
4ad7febd72
Branch_hello
SCH_4G
STU_V1
master
V2.0
v1.1.a
V1.0
Branches
Tags
${ item.name }
Criar branch
${ searchTerm }
de 4ad7febd72
${ noResults }
testTelpo
/
age.c
age.c
102B
Original
Visão normal
Histórico
dylan1: age.c add setAge() func
4 anos atrás
Merge branch 'master' of http://183.238.195.77:10081/dylan/testTelpo # Conflicts: # age.c
4 anos atrás
dylan1: age.c add setAge() func
4 anos atrás
Merge branch 'master' of http://183.238.195.77:10081/dylan/testTelpo # Conflicts: # age.c
4 anos atrás
dylan2: age.c add getAge() func
4 anos atrás
age.c chagne
4 anos atrás
dylan1: age.c add setAge() func
4 anos atrás
1
2
3
4
5
6
7
8
9
10
#include "age.h"
void setAge(uint8_t age)
{
g_age = age;
}
uint8_t getAge(void)
{
return g_age+2;
}