OSDN Git Service

(none)
[hos/hos-v4a.git] / aplfw / library / container / streambuf / streambuf_clear.c
1 /** 
2  *  Hyper Operating System  Application Framework
3  *
4  * @file  streambuf.h
5  * @brief %jp{ストリームデータ用バッファクラス}
6  *
7  * Copyright (C) 2002-2007 by Project HOS
8  * http://sourceforge.jp/projects/hos/
9  */
10
11
12 #include "streambuf_local.h"
13
14
15 /** バッファのクリア */
16 void StreamBuf_Clear(C_STREAMBUF *self)
17 {
18         self->uiHead = self->uiTail;
19 }
20
21
22 /* end of file */