Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Per Cederqvist
lyskom-server-ceder-1616-generations-topgit
Commits
7bdfdd09
Commit
7bdfdd09
authored
Aug 05, 1993
by
Per Cederqvist
Browse files
The text argument to create_text and create_anonymous_text is const.
parent
7f6ded0a
Changes
1
Show whitespace changes
Inline
Side-by-side
src/server/text.c
View file @
7bdfdd09
/*
* $Id: text.c,v 0.1
8
1993/0
1/16 23:18:41
ceder Exp $
* $Id: text.c,v 0.1
9
1993/0
8/05 01:00:36
ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -28,7 +28,7 @@
* All atomic calls that deals with texts.
*/
static
char
*
rcsid
=
"$Id: text.c,v 0.1
8
1993/0
1/16 23:18:41
ceder Exp $"
;
static
char
*
rcsid
=
"$Id: text.c,v 0.1
9
1993/0
8/05 01:00:36
ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
...
...
@@ -1755,7 +1755,7 @@ send_async_new_text (Text_no text_no,
* Returns text_no of the created text, or 0 if there was an error.
*/
extern
Text_no
create_text
(
String
message
,
create_text
(
const
String
message
,
u_short
no_of_misc
,
Misc_info
*
misc
)
{
...
...
@@ -1828,7 +1828,7 @@ create_text(String message,
* Returns text_no of the created text, or 0 if there was an error.
*/
extern
Text_no
create_anonymous_text
(
String
message
,
create_anonymous_text
(
const
String
message
,
u_short
no_of_misc
,
Misc_info
*
misc
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment