Procházet zdrojové kódy

Merge branch 'master' of http://183.238.195.77:10081/dylan/testTelpo into Branch_1

tags/V2.0
dylan před 4 roky
rodič
revize
b91467f5d5
2 změnil soubory, kde provedl 14 přidání a 0 odebrání
  1. +10
    -0
      study/study.c
  2. +4
    -0
      study/study.h

+ 10
- 0
study/study.c Zobrazit soubor

@@ -0,0 +1,10 @@
#include "study.h"
uint8_t g_class;
void study_set_class(uint8_t class)
{
g_class = class;
}
uint8_t study_get_class(void)
{
return g_class;
}

+ 4
- 0
study/study.h Zobrazit soubor

@@ -0,0 +1,4 @@
#include "stdio.h"

void study_set_class(uint8_t class);
uint8_t study_get_class(void);

Načítá se…
Zrušit
Uložit