blob: 42b64d33b25371ff129d8ed7f75b82d356a171bb [file] [log] [blame]
/*
* resolve.c: wrapper around wc resolve functionality.
*
* ====================================================================
* Copyright (c) 2000-2002 CollabNet. All rights reserved.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at http://subversion.tigris.org/license-1.html.
* If newer versions of this license are posted there, you may use a
* newer version instead, at your option.
*
* This software consists of voluntary contributions made by many
* individuals. For exact contribution history, see the revision
* history and logs, available at http://subversion.tigris.org/.
* ====================================================================
*/
/* ==================================================================== */
/*** Includes. ***/
#include "svn_wc.h"
#include "svn_client.h"
#include "svn_string.h"
#include "svn_pools.h"
#include "svn_error.h"
#include "svn_path.h"
#include "client.h"
/*** Code. ***/
svn_error_t *
svn_client_resolve (svn_stringbuf_t *path,
svn_wc_notify_func_t notify_func,
void *notify_baton,
apr_pool_t *pool)
{
return svn_wc_resolve_conflict (path, notify_func, notify_baton, pool);
}
/*
* local variables:
* eval: (load-file "../../tools/dev/svn-dev.el")
* end: */