15 lines
272 B
C
15 lines
272 B
C
|
/*
|
||
|
util.h
|
||
|
文字列操作のための関数群
|
||
|
(C)2012 B11T3074C, B11T3011K - MIT License
|
||
|
*/
|
||
|
|
||
|
#ifndef UTIL_H
|
||
|
#define UTIL_H
|
||
|
|
||
|
char *strtolower(char *s);
|
||
|
void input_line(char *buff, size_t size);
|
||
|
int select_y(char ch);
|
||
|
char *input_string(char *prompt, char *defstr);
|
||
|
|
||
|
#endif
|