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