1251881Speter/* notify.c --- notifcation system
2251881Speter *
3251881Speter * ====================================================================
4251881Speter *    Licensed to the Apache Software Foundation (ASF) under one
5251881Speter *    or more contributor license agreements.  See the NOTICE file
6251881Speter *    distributed with this work for additional information
7251881Speter *    regarding copyright ownership.  The ASF licenses this file
8251881Speter *    to you under the Apache License, Version 2.0 (the
9251881Speter *    "License"); you may not use this file except in compliance
10251881Speter *    with the License.  You may obtain a copy of the License at
11251881Speter *
12251881Speter *      http://www.apache.org/licenses/LICENSE-2.0
13251881Speter *
14251881Speter *    Unless required by applicable law or agreed to in writing,
15251881Speter *    software distributed under the License is distributed on an
16251881Speter *    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17251881Speter *    KIND, either express or implied.  See the License for the
18251881Speter *    specific language governing permissions and limitations
19251881Speter *    under the License.
20251881Speter * ====================================================================
21251881Speter */
22251881Speter
23251881Speter#include <stdio.h>
24251881Speter#include <string.h>
25251881Speter#include <ctype.h>
26251881Speter
27251881Speter#include "svn_pools.h"
28251881Speter#include "svn_repos.h"
29251881Speter#include "repos.h"
30251881Speter#include "svn_private_config.h"
31251881Speter#include "private/svn_utf_private.h"
32251881Speter
33251881Speter
34251881Speter
35251881Spetersvn_repos_notify_t *
36251881Spetersvn_repos_notify_create(svn_repos_notify_action_t action,
37251881Speter                        apr_pool_t *result_pool)
38251881Speter{
39251881Speter  svn_repos_notify_t *notify = apr_pcalloc(result_pool, sizeof(*notify));
40251881Speter
41251881Speter  notify->action = action;
42251881Speter
43251881Speter  return notify;
44251881Speter}
45