003 File Manager
Current Path:
/usr/src/contrib/subversion/subversion/libsvn_repos
usr
/
src
/
contrib
/
subversion
/
subversion
/
libsvn_repos
/
📁
..
📄
authz.c
(58.3 KB)
📄
authz.h
(11.24 KB)
📄
authz_info.c
(6.06 KB)
📄
authz_parse.c
(45.67 KB)
📄
commit.c
(45.9 KB)
📄
compat.c
(6.34 KB)
📄
config_file.c
(12.31 KB)
📄
config_file.h
(2.56 KB)
📄
config_pool.c
(5.07 KB)
📄
delta.c
(35.31 KB)
📄
deprecated.c
(50.22 KB)
📄
dump.c
(87.65 KB)
📄
dump_editor.c
(32.75 KB)
📄
fs-wrap.c
(36.67 KB)
📄
hooks.c
(27.58 KB)
📄
libsvn_repos.pc.in
(335 B)
📄
list.c
(10.94 KB)
📄
load-fs-vtable.c
(53.07 KB)
📄
load.c
(28.14 KB)
📄
log.c
(90.06 KB)
📄
node_tree.c
(11.52 KB)
📄
notify.c
(1.44 KB)
📄
replay.c
(57.18 KB)
📄
reporter.c
(60.96 KB)
📄
repos.c
(88.13 KB)
📄
repos.h
(15.85 KB)
📄
rev_hunt.c
(61.8 KB)
Editing: notify.c
/* notify.c --- notifcation system * * ==================================================================== * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * ==================================================================== */ #include <stdio.h> #include <string.h> #include <ctype.h> #include "svn_pools.h" #include "svn_repos.h" #include "repos.h" #include "svn_private_config.h" #include "private/svn_utf_private.h" svn_repos_notify_t * svn_repos_notify_create(svn_repos_notify_action_t action, apr_pool_t *result_pool) { svn_repos_notify_t *notify = apr_pcalloc(result_pool, sizeof(*notify)); notify->action = action; return notify; }
Upload File
Create Folder