Skip to content

Commit

Permalink
API params_init
Browse files Browse the repository at this point in the history
  • Loading branch information
horta committed Oct 26, 2023
1 parent 806906b commit 4c2344a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion c-core/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.20.2 FATAL_ERROR)
project(deciphon VERSION 0.12.1 LANGUAGES C)
project(deciphon VERSION 0.12.2 LANGUAGES C)

include(cmake/warnings.cmake)
include(cmake/sanitizers.cmake)
Expand Down
5 changes: 3 additions & 2 deletions c-core/params.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#ifndef PARAMS_H
#define PARAMS_H

#include "compiler.h"
#include <stdbool.h>

struct params
Expand All @@ -10,7 +11,7 @@ struct params
bool hmmer3_compat;
};

int params_setup(struct params *, int num_threads, bool multi_hits,
bool hmmer3_compat);
API int params_setup(struct params *, int num_threads, bool multi_hits,
bool hmmer3_compat);

#endif

0 comments on commit 4c2344a

Please sign in to comment.