Open
Conversation
There was a problem hiding this comment.
Pull request overview
This pull request adds documentation for two C standard library file position functions: fgetpos and fsetpos. These functions provide a more robust way to save and restore file positions compared to ftell/fseek, especially for large files and multibyte character files, by using the fpos_t type instead of long int.
Changes:
- Created documentation for
fgetpos()function (retrieves current file position) - Created documentation for
fsetpos()function (sets file position) - Updated links in existing files (
ungetc.md,fpos_t.md,cstdio.md) from.nolinkto proper links now that these functions are documented
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 9 comments.
Show a summary per file
| File | Description |
|---|---|
| reference/cstdio/fgetpos.md | New documentation page for fgetpos function with signature, description, rationale, and example code |
| reference/cstdio/fsetpos.md | New documentation page for fsetpos function with signature, description, rationale, and example code |
| reference/cstdio/ungetc.md | Updated fsetpos link from .nolink to proper link |
| reference/cstdio/fpos_t.md | Updated fgetpos and fsetpos links from .nolink to proper links |
| reference/cstdio.md | Updated fgetpos and fsetpos links in the function table from .nolink to proper links |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Contributor
|
⚡ プレビュー (HTML) (更新時刻: 2026-02-14 22:50:31 JST) 変更記事一覧5件の記事が変更されました。
※ソース (.md) に直接変更のあった記事を列挙しています。グローバル修飾や変換規則の変更による変化は考慮していません。 |
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
確認よろしくおねがいします。