Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pikelang
pike
Commits
e912d417
Commit
e912d417
authored
22 years ago
by
Henrik (Grubba) Grubbström
Browse files
Options
Downloads
Patches
Plain Diff
Some more documentation fixes.
Rev: lib/modules/Stdio.pmod/module.pmod:1.153
parent
3339647b
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/modules/Stdio.pmod/module.pmod
+15
-5
15 additions, 5 deletions
lib/modules/Stdio.pmod/module.pmod
with
15 additions
and
5 deletions
lib/modules/Stdio.pmod/module.pmod
+
15
−
5
View file @
e912d417
// $Id: module.pmod,v 1.15
2
2002/08/28 12:4
0:57
grubba Exp $
// $Id: module.pmod,v 1.15
3
2002/08/28 12:4
6:34
grubba Exp $
#pike __REAL_VERSION__
inherit files;
...
...
@@ -1670,11 +1670,16 @@ string read_bytes(string filename, void|int start,void|int len)
//! Write the string @[str] onto the file @[filename]. Any existing
//! data in the file is overwritten.
//!
//! For a description of @[access], see @[Stdio.File()->open()].
//!
//! @throws
//! Throws an error if @[filename] couldn't be opened for writing.
//!
//! @returns
//! Returns number of bytes written.
//!
Returns
the
number of bytes written.
//!
//! @seealso
//! @[append_file()], @[read_bytes()]
//!
@[append_file()], @[read_bytes()]
, @[Stdio.File()->open()]
//!
int write_file(string filename, string str, int|void access)
{
...
...
@@ -1695,11 +1700,16 @@ int write_file(string filename, string str, int|void access)
//! Append the string @[str] onto the file @[filename].
//!
//! For a description of @[access], see @[Stdio.File->open()].
//!
//! @throws
//! Throws an error if @[filename] couldn't be opened for writing.
//!
//! @returns
//! Returns number of bytes written.
//!
Returns
the
number of bytes written.
//!
//! @seealso
//! @[write_file()], @[read_bytes()]
//!
@[write_file()], @[read_bytes()]
, @[Stdio.File()->open()]
//!
int append_file(string filename, string str, int|void access)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment