summaryrefslogtreecommitdiff
path: root/mask.cc
blob: 11700a519e26c0fc4303ac31d424714c6d32409a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "mask.h"
#include "debug.h"
#include "util.h"

#include <cstdlib>

mask_t::mask_t(const std::string& pat) : exclude(false)
{
  const char * p = pat.c_str();

  if (*p == '-') {
    exclude = true;
    p++;
    while (std::isspace(*p))
      p++;
  }
  else if (*p == '+') {
    p++;
    while (std::isspace(*p))
      p++;
  }

  expr.assign(p);
}