Coverage Report

Created: 2025-11-24 06:37

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/aspell/lib/new_config.cpp
Line
Count
Source
1
// This file is part of The New Aspell
2
// Copyright (C) 2002 by Kevin Atkinson under the GNU LGPL
3
// license version 2.0 or 2.1.  You should have received a copy of the
4
// LGPL license along with this library if you did not you can find it
5
// at http://www.gnu.org/.
6
7
#include <string.h>
8
9
#include "config.hpp"
10
#include "errors.hpp"
11
#include "filter.hpp"
12
13
namespace acommon {
14
  
15
  extern void setup_static_filters(Config * config);
16
17
  Config * new_config() 
18
2.12k
  {
19
2.12k
    Config * config = new_basic_config();
20
2.12k
    setup_static_filters(config);
21
2.12k
    return config;
22
2.12k
  }
23
24
}