8f39550ce
김태훈
superdaemon 추가
|
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 <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "projectinc.h"
//--------------------------------------------------------------------
// desc 문자열에서 /t /n /f 와 같은 화이트 문자를 NULL 코드로
// 바꾸어 준다.
//--------------------------------------------------------------------
void remove_white_char( char *_str)
{
int ndx;
for ( ndx = 0; ndx < strlen(_str); ndx++)
{
if (' ' > _str[ndx])
{
_str[ndx] = '\0';
}
}
}
//--------------------------------------------------------------------
// desc 메시지를 전송하고 실행을 중지한다.
//--------------------------------------------------------------------
void error_handling(char *message)
{
fputs( message, stderr);
fputc( '
', stderr);
exit(1);
}
|