File: checkmate.h

package info (click to toggle)
r-cran-checkmate 2.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,504 kB
  • sloc: ansic: 2,196; sh: 9; makefile: 8
file content (22 lines) | stat: -rw-r--r-- 450 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef _CHECKMATE_H_
#define _CHECKMATE_H_

#include <R.h>
#include <Rinternals.h>
#include <Rdefines.h>
#include <R_ext/Rdynload.h>
#include <R_ext/Visibility.h>

#ifdef __cplusplus
extern "C" {
#endif

Rboolean attribute_hidden qtest(SEXP x, const char *rule);
SEXP attribute_hidden qassert(SEXP x, const char *rule, const char *name);
SEXP attribute_hidden qcheck(SEXP x, const char *rule, const char *name);

#ifdef __cplusplus
}
#endif

#endif