Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7042 → Rev 7043

/programs/cmm/lib/collection.h
63,7 → 63,7
= =
========================================================*/
 
:struct collection_int
struct collection_int
{
int count;
dword element[4096*3];
72,7 → 72,7
void drop();
};
 
:int collection_int::add(dword in) {
int collection_int::add(dword in) {
if (count >= 4096*3) return 0;
element[count] = in;
count++;
79,12 → 79,12
return 1;
}
 
:dword collection_int::get(dword pos) {
dword collection_int::get(dword pos) {
if (pos<0) || (pos>=count) return 0;
return element[pos];
}
 
:void collection_int::drop() {
void collection_int::drop() {
element[0] =
count = 0;
}