blob: ef4b62df2f1a7e6f8f68e136411844eeaf69401a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#include <util.h>
#include <curses.h>
#include "strings.h"
void allLower(char* str)
{
for(int i=0;str[i];++i)
{
str[i]=tolower(str[i]);
}
}
void print_string(const char* str) /* print string, slowly */
{
int i=0;
while(str[i])
{
addch(str[i]);
usleep(SLEEP_TIME);
refresh();
++i;
}
}
void remove_punct(char* buf)
{
for(int i=0;buf[i];++i)
{
for(int j=0;j<sizeof(punctuation_marks)/sizeof(char);++j)
{
if(buf[i]==punctuation_marks[j])
{
memmove(&buf[i], &buf[i+1], strlen(buf)-i);
}
}
}
}
|