2014-git-work/cpp/aimaina/util.h
2012-08-28 23:07:07 +09:00

15 lines
No EOL
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