summaryrefslogtreecommitdiff
path: root/src/auxiliaryFunctions/isempty/sisemptya.c
blob: 4040720eeb7da73d1628547b06348b963cb82f09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
**  -*- C -*-
**
** sisemptya.c
** Made by  Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on  Wed Feb 14 14:59:33 2007 jofret
** Last update Fri Apr 27 08:59:07 2007 jofret
**
** Copyright INRIA 2007
*/

#include "isempty.h"

bool		sisemptya(float* x, int size) {
  if (sfinda(x, size) == NOT_FOUND) {
    return true;
  }
  return false;
}