|
| |||||||||||||
#include "mit-copyright.h"#include "buffer.h"Go to the source code of this file.
Functions | |
| string | buffer_to_string () |
| void | clear_buffer () |
| void | append_buffer (char *str) |
|
|
Definition at line 31 of file buffer.c. References buffer, and string_Concat2. 00033 {
00034 buffer = string_Concat2(buffer, str);
00035 }
|
|
|
Definition at line 16 of file buffer.c. Referenced by eval_expr(). 00017 {
00018 return (buffer);
00019 }
|
|
|
Definition at line 22 of file buffer.c. References buffer, and string_Copy. Referenced by exec_process_packet(). 00023 {
00024 if (buffer)
00025 free(buffer);
00026
00027 buffer = string_Copy("");
00028 }
|
| Last updated at Tue Dec 18 21:07:42 PST 2007. | This site and project hosted by... |