The R Project SVN R

Rev

Rev 35102 | Rev 41774 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35102 Rev 35899
Line 1... Line 1...
1
/*
1
/*
2
 *  R : A Computer Language for Statistical Data Analysis
2
 *  R : A Computer Language for Statistical Data Analysis
3
 *  Copyright (C) 1998-2004    Robert Gentleman, Ross Ihaka
3
 *  Copyright (C) 1998-2005    Robert Gentleman, Ross Ihaka
4
 *                             and the R Development Core Team
4
 *                             and the R Development Core Team
5
 *
5
 *
6
 *  This program is free software; you can redistribute it and/or modify
6
 *  This program is free software; you can redistribute it and/or modify
7
 *  it under the terms of the GNU Lesser General Public License as published by
7
 *  it under the terms of the GNU Lesser General Public License as published by
8
 *  the Free Software Foundation; either version 2.1 of the License, or
8
 *  the Free Software Foundation; either version 2.1 of the License, or
Line 81... Line 81...
81
		double *r, double *g, double *b);
81
		double *r, double *g, double *b);
82
void	rgb2hsv(double r, double g, double b,
82
void	rgb2hsv(double r, double g, double b,
83
		double *h, double *s, double *v);
83
		double *h, double *s, double *v);
84
 
84
 
85
void R_CheckUserInterrupt(void);
85
void R_CheckUserInterrupt(void);
-
 
86
void R_CheckStack(void);
-
 
87
    
86
 
88
 
87
/* ../../appl/interv.c: also in Applic.h */
89
/* ../../appl/interv.c: also in Applic.h */
88
int findInterval(double *xt, int n, double x,
90
int findInterval(double *xt, int n, double x,
89
		 Rboolean rightmost_closed,  Rboolean all_inside, int ilo,
91
		 Rboolean rightmost_closed,  Rboolean all_inside, int ilo,
90
		 int *mflag);
92
		 int *mflag);