blob: 054d792ee9bbb061a309bdb000e08d0d7e065a60 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/***************************************************************************
kdatabuffer.cpp - description
-------------------
begin : Fri Aug 01 2003
copyright : (C) 2003 by Friedrich W. H. Kossebau
email : Friedrich.W.H@Kossebau.de
***************************************************************************/
/***************************************************************************
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License version 2 as published by the Free Software Foundation. *
* *
***************************************************************************/
// c specific
#include <ctype.h>
// lib specific
#include "kdatabuffer.h"
using namespace KHE;
int KDataBuffer::insert( int Pos, const char* D, int Length )
{
return replace( Pos,0,D,Length );
}
int KDataBuffer::remove( KSection Remove )
{
replace( Remove, 0, 0 );
return Remove.width(); // TODO: check if this is true
}
int KDataBuffer::copyTo( char* Dest, int Pos, int Length ) const
{
return copyTo( Dest, KSection(Pos,Length,false) );
}
int KDataBuffer::copyTo( char* Dest, KSection Source ) const
{
Source.restrictEndTo( size()-1 );
for( int i=Source.start(); i<=Source.end(); ++i )
*Dest++ = datum( i );
return Source.width();
}
|