1/*
2 * lock.c:  routines for svn_lock_t objects.
3 *
4 * ====================================================================
5 *    Licensed to the Apache Software Foundation (ASF) under one
6 *    or more contributor license agreements.  See the NOTICE file
7 *    distributed with this work for additional information
8 *    regarding copyright ownership.  The ASF licenses this file
9 *    to you under the Apache License, Version 2.0 (the
10 *    "License"); you may not use this file except in compliance
11 *    with the License.  You may obtain a copy of the License at
12 *
13 *      http://www.apache.org/licenses/LICENSE-2.0
14 *
15 *    Unless required by applicable law or agreed to in writing,
16 *    software distributed under the License is distributed on an
17 *    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
18 *    KIND, either express or implied.  See the License for the
19 *    specific language governing permissions and limitations
20 *    under the License.
21 * ====================================================================
22 */
23
24/* ==================================================================== */
25
26
27
28/*** Includes. ***/
29
30#include <apr_strings.h>
31
32#include "svn_types.h"
33
34
35/*** Code. ***/
36
37svn_lock_t *
38svn_lock_create(apr_pool_t *pool)
39{
40  return apr_pcalloc(pool, sizeof(svn_lock_t));
41}
42
43svn_lock_t *
44svn_lock_dup(const svn_lock_t *lock, apr_pool_t *pool)
45{
46  svn_lock_t *new_l;
47
48  if (lock == NULL)
49    return NULL;
50
51  new_l = apr_palloc(pool, sizeof(*new_l));
52  *new_l = *lock;
53
54  new_l->path = apr_pstrdup(pool, new_l->path);
55  new_l->token = apr_pstrdup(pool, new_l->token);
56  new_l->owner = apr_pstrdup(pool, new_l->owner);
57  new_l->comment = apr_pstrdup(pool, new_l->comment);
58
59  return new_l;
60}
61