19 lines
232 B
C
19 lines
232 B
C
|
|
/*
|
|
* Copyright (C) Artsiom D.
|
|
* Copyright (C) shit-co.de
|
|
*/
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
struct chart {
|
|
double *prices;
|
|
unsigned int length;
|
|
};
|
|
|
|
|
|
void update_chart(struct chart *);
|
|
struct chart new_chart(unsigned int length);
|