summaryrefslogtreecommitdiff
path: root/noncore/todayplugins/stockticker/libstocks/lists.c
blob: 1ed66b3fc5e00c4f8f89ec723ac8b1544ea8ada3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/* libstocks - Library to get current stock quotes from Yahoo Finance
 *
 * Copyright (C) 2000 Eric Laeuffer
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

#define __LISTS_C__

#include <malloc.h>
#include <stdio.h>
#include <string.h>

#ifdef __WINDOWS__
#include <stdlib.h>
#endif

#include "stocks.h"
#include "lists.h"

/******************************************************************************/
/* Finds a stock in the stocks list and return the stock pointer.             */
/* *stocks points to the stocks list                                          */
/* *stock_to_find is the stock to find :))                                    */
/******************************************************************************/
stock *find_stock(stock *stocks, char *stock_to_find)
{
  char *test=NULL;

  while(stocks != NULL)
    {
      test = strstr(stocks->Symbol, stock_to_find);
      if(test) return(stocks);
      stocks = stocks->NextStock;
    }

  return(0);
}

/******************************************************************************/
/* Allocate memory for a stock structure and return the pointer of this       */
/* structure.                                                                 */
/******************************************************************************/
stock *malloc_stock(void)
{
  stock *stockptr;

  if((stockptr = (stock *)malloc(sizeof(stock)))==NULL)
    {
      fprintf(stderr,"Memory allocating error (%s line %d)\n"
	      ,__FILE__, __LINE__);
      exit(1);
    }

  stockptr->Symbol=NULL;
  stockptr->Name=NULL;
  stockptr->Time=NULL;
  stockptr->Date=NULL;  
  stockptr->CurrentPrice=0;
  stockptr->LastPrice=0;
  stockptr->OpenPrice=0;
  stockptr->MinPrice=0;
  stockptr->MaxPrice=0;
  stockptr->Variation=0;
  stockptr->Pourcentage=0;
  stockptr->Volume=0;
  stockptr->PreviousStock=0;
  stockptr->NextStock=0;
  
  return(stockptr);
}

/******************************************************************************/
/* Deallocates a stock structure.                                             */
/* *stocks_to_free is the pointer of the structure to free                    */
/******************************************************************************/
void free_stocks(stock *stock_to_free)
{
  stock *next_stock;
  
  while(stock_to_free)
    {    
      next_stock = stock_to_free->NextStock;
      free(stock_to_free->Symbol);
      free(stock_to_free->Name);
      free(stock_to_free->Time);
      free(stock_to_free->Date);
      free(stock_to_free);
      stock_to_free = next_stock;
    }
}

/******************************************************************************/
/* Returns the next stock structure from the list.                            */
/* *the_stocks points to the list.                                            */
/******************************************************************************/
stock *next_stock(stock *the_stock)
{
  return((stock *)(the_stock->NextStock));
}

/******************************************************************************/
/* Returns the previous stock structure from the list.                        */
/* *the_stocks points to the list.                                            */
/******************************************************************************/
stock *previous_stock(stock *the_stock)
{
  return((stock *)(the_stock->PreviousStock));
}