From a21deef1c62467b21500f94dfb2ab3d58e69cb85 Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Mon, 4 Jul 2005 04:14:58 +0000 Subject: 04.07.2005 --- src/opt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/opt.c') diff --git a/src/opt.c b/src/opt.c index ec4684f..85960df 100644 --- a/src/opt.c +++ b/src/opt.c @@ -3,13 +3,13 @@ #include "internal.h" #include "opt.h" -rcc_option_value rccConfigGetOption(rcc_context ctx, rcc_option option) { +rcc_option_value rccGetOption(rcc_context ctx, rcc_option option) { if ((!ctx)||(option<0)||(option>=RCC_MAX_OPTIONS)) return -1; return ctx->options[option]; } -int rccConfigSetOption(rcc_context ctx, rcc_option option, rcc_option_value value) { +int rccSetOption(rcc_context ctx, rcc_option option, rcc_option_value value) { if ((!ctx)||(option>=RCC_MAX_OPTIONS)) return -1; if (ctx->options[option] != value) { -- cgit v1.2.3