File: ex2doubles.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 (63 lines) | stat: -rw-r--r-- 1,417 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
55
56
57
58
59
60
61
62
63
/* Copyright (C) 2000 Damir Zucic */

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

				ex2doubles.c

Purpose:
	Extract two double values from a string.

Input:
	(1) Pointer to the first double value.
	(2) Pointer to the second double value.
	(3) Input string pointer.

Output:
	(1) The first double value.
	(2) The second double value.
	(3) Return value.

Return value:
	(1) Positive on success.
	(2) Negative on failure.

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

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

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

int ExtractTwoDoubles_ (double *value1P, double *value2P, char *sP)
{
char		*P0, *P1;
int		n;
static double		d1, d2;

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

/* 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 two double values: */
if (sscanf (P0, " %lf %lf", &d1, &d2) != 2) return -1;

/* On success, copy the extracted values: */
*value1P = d1;
*value2P = d2;

/* If everything worked fine, return positive integer: */
return 1;
}

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