Fossil SCM

More updates of func decls f() to f(void).

stephan 2023-01-25 00:25 trunk
Commit 9c5952bec35f6e28642ab1d3c11b66bc06308ed11f5d68814e6e67089be94a32
1 file changed +14 -14
+14 -14
--- src/json.c
+++ src/json.c
@@ -2204,37 +2204,37 @@
22042204
}
22052205
return json_g_to_json();
22062206
}
22072207
22082208
/* Impl in json_login.c. */
2209
-cson_value * json_page_anon_password();
2209
+cson_value * json_page_anon_password(void);
22102210
/* Impl in json_artifact.c. */
2211
-cson_value * json_page_artifact();
2211
+cson_value * json_page_artifact(void);
22122212
/* Impl in json_branch.c. */
2213
-cson_value * json_page_branch();
2213
+cson_value * json_page_branch(void);
22142214
/* Impl in json_diff.c. */
2215
-cson_value * json_page_diff();
2215
+cson_value * json_page_diff(void);
22162216
/* Impl in json_dir.c. */
2217
-cson_value * json_page_dir();
2217
+cson_value * json_page_dir(void);
22182218
/* Impl in json_login.c. */
2219
-cson_value * json_page_login();
2219
+cson_value * json_page_login(void);
22202220
/* Impl in json_login.c. */
2221
-cson_value * json_page_logout();
2221
+cson_value * json_page_logout(void);
22222222
/* Impl in json_query.c. */
2223
-cson_value * json_page_query();
2223
+cson_value * json_page_query(void);
22242224
/* Impl in json_report.c. */
2225
-cson_value * json_page_report();
2225
+cson_value * json_page_report(void);
22262226
/* Impl in json_tag.c. */
2227
-cson_value * json_page_tag();
2227
+cson_value * json_page_tag(void);
22282228
/* Impl in json_user.c. */
2229
-cson_value * json_page_user();
2229
+cson_value * json_page_user(void);
22302230
/* Impl in json_config.c. */
2231
-cson_value * json_page_config();
2231
+cson_value * json_page_config(void);
22322232
/* Impl in json_finfo.c. */
2233
-cson_value * json_page_finfo();
2233
+cson_value * json_page_finfo(void);
22342234
/* Impl in json_status.c. */
2235
-cson_value * json_page_status();
2235
+cson_value * json_page_status(void);
22362236
22372237
/*
22382238
** Mapping of names to JSON pages/commands. Each name is a subpath of
22392239
** /json (in CGI mode) or a subcommand of the json command in CLI mode
22402240
*/
22412241
--- src/json.c
+++ src/json.c
@@ -2204,37 +2204,37 @@
2204 }
2205 return json_g_to_json();
2206 }
2207
2208 /* Impl in json_login.c. */
2209 cson_value * json_page_anon_password();
2210 /* Impl in json_artifact.c. */
2211 cson_value * json_page_artifact();
2212 /* Impl in json_branch.c. */
2213 cson_value * json_page_branch();
2214 /* Impl in json_diff.c. */
2215 cson_value * json_page_diff();
2216 /* Impl in json_dir.c. */
2217 cson_value * json_page_dir();
2218 /* Impl in json_login.c. */
2219 cson_value * json_page_login();
2220 /* Impl in json_login.c. */
2221 cson_value * json_page_logout();
2222 /* Impl in json_query.c. */
2223 cson_value * json_page_query();
2224 /* Impl in json_report.c. */
2225 cson_value * json_page_report();
2226 /* Impl in json_tag.c. */
2227 cson_value * json_page_tag();
2228 /* Impl in json_user.c. */
2229 cson_value * json_page_user();
2230 /* Impl in json_config.c. */
2231 cson_value * json_page_config();
2232 /* Impl in json_finfo.c. */
2233 cson_value * json_page_finfo();
2234 /* Impl in json_status.c. */
2235 cson_value * json_page_status();
2236
2237 /*
2238 ** Mapping of names to JSON pages/commands. Each name is a subpath of
2239 ** /json (in CGI mode) or a subcommand of the json command in CLI mode
2240 */
2241
--- src/json.c
+++ src/json.c
@@ -2204,37 +2204,37 @@
2204 }
2205 return json_g_to_json();
2206 }
2207
2208 /* Impl in json_login.c. */
2209 cson_value * json_page_anon_password(void);
2210 /* Impl in json_artifact.c. */
2211 cson_value * json_page_artifact(void);
2212 /* Impl in json_branch.c. */
2213 cson_value * json_page_branch(void);
2214 /* Impl in json_diff.c. */
2215 cson_value * json_page_diff(void);
2216 /* Impl in json_dir.c. */
2217 cson_value * json_page_dir(void);
2218 /* Impl in json_login.c. */
2219 cson_value * json_page_login(void);
2220 /* Impl in json_login.c. */
2221 cson_value * json_page_logout(void);
2222 /* Impl in json_query.c. */
2223 cson_value * json_page_query(void);
2224 /* Impl in json_report.c. */
2225 cson_value * json_page_report(void);
2226 /* Impl in json_tag.c. */
2227 cson_value * json_page_tag(void);
2228 /* Impl in json_user.c. */
2229 cson_value * json_page_user(void);
2230 /* Impl in json_config.c. */
2231 cson_value * json_page_config(void);
2232 /* Impl in json_finfo.c. */
2233 cson_value * json_page_finfo(void);
2234 /* Impl in json_status.c. */
2235 cson_value * json_page_status(void);
2236
2237 /*
2238 ** Mapping of names to JSON pages/commands. Each name is a subpath of
2239 ** /json (in CGI mode) or a subcommand of the json command in CLI mode
2240 */
2241

Keyboard Shortcuts

Open search /
Next entry (timeline) j
Previous entry (timeline) k
Open focused entry Enter
Show this help ?
Toggle theme Top nav button