ソースを参照

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

tags/V2.0
dylan 4年前
コミット
b91467f5d5
2個のファイルの変更14行の追加0行の削除
  1. +10
    -0
      study/study.c
  2. +4
    -0
      study/study.h

+ 10
- 0
study/study.c ファイルの表示

@@ -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 ファイルの表示

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

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

読み込み中…
キャンセル
保存