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