Jabber WindowGram Client (JWGC)

Introduction Screenshots Installation Downloads
Documentation Browse Source Resources Project Site

Stable Version
-none-

Latest Version
beta5



Main Page | Alphabetical List | Data Structures | Directories | File List | Data Fields | Globals

buffer.c File Reference

#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)


Function Documentation

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 }

string buffer_to_string  ) 
 

Definition at line 16 of file buffer.c.

Referenced by eval_expr().

00017 {
00018         return (buffer);
00019 }

void clear_buffer  ) 
 

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...SourceForge.net Logo

Source Perspective by Fisheye