Files
gambling-curses/chart.h

19 lines
232 B
C
Raw Normal View History

/*
* 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);