File: extract_double.c

package info (click to toggle)
garlic 1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze
  • size: 4,440 kB
  • ctags: 1,403
  • sloc: ansic: 52,465; makefile: 1,133
file content (54 lines) | stat: -rw-r--r-- 1,210 bytes parent folder | download | duplicates (6)
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
/* Copyright (C) 2000 Damir Zucic */

/*=============================================================================

				extract_double.c

Purpose:
	Extract double value from a string.

Input:
	Input string pointer.

Output:
	Return value.

Return value:
	(1) Double value read from input string, on success.
	(2) Zero on failure (separator not found or no digits available).

========includes:============================================================*/

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

/*======extract double from a string:========================================*/

double ExtractDouble_ (char *sP)
{
char		*P0, *P1;
int		n;
double		value;

/* Colon should be separator: */
if ((P0 = strstr (sP, ":")) == NULL) P0 = sP;

/* Replace each non-numeric character (except */
/* minus sign and  decimal point) with space: */
P1 = P0;
while ((n = *P1++) != '\0')
	{
	if (!isdigit (n) && (n != '-') && (n != '.')) *(P1 - 1) = ' ';
	}

/* Try to read double value: */
if (sscanf (P0, "%lf", &value) != 1) return 0.0;

/* If everything worked fine, return the extracted double value: */
return value;
}

/*===========================================================================*/