Skip to content

Commit 1533bf8

Browse files
authored
Remove unneeded ./ link prefix
1 parent 43a693b commit 1533bf8

File tree

5 files changed

+160
-160
lines changed

5 files changed

+160
-160
lines changed

docs/c-runtime-library/buffer-manipulation.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ Use these routines to work with areas of memory on a byte-by-byte basis.
1313

1414
| Routine | Use |
1515
|---|---|
16-
| [`_memccpy`](./reference/memccpy.md) | Copy characters from one buffer to another until given character or given number of characters has been copied |
17-
| [`memchr`, `wmemchr`](./reference/memchr-wmemchr.md) | Return pointer to first occurrence, within specified number of characters, of given character in buffer |
18-
| [`memcmp`, `wmemcmp`](./reference/memcmp-wmemcmp.md) | Compare specified number of characters from two buffers |
19-
| [`memcpy`, `wmemcpy`](./reference/memcpy-wmemcpy.md), [`memcpy_s`, `wmemcpy_s`](./reference/memcpy-s-wmemcpy-s.md) | Copy specified number of characters from one buffer to another |
20-
| [`_memicmp`, `_memicmp_l`](./reference/memicmp-memicmp-l.md) | Compare specified number of characters from two buffers without regard to case |
21-
| [`memmove`, `wmemmove`](./reference/memmove-wmemmove.md), [`memmove_s`, `wmemmove_s`](./reference/memmove-s-wmemmove-s.md) | Copy specified number of characters from one buffer to another |
22-
| [`memset`, `wmemset`](./reference/memset-wmemset.md) | Use given character to initialize specified number of bytes in the buffer |
23-
| [`_swab`](./reference/swab.md) | Swap bytes of data and store them at specified location |
16+
| [`_memccpy`](reference/memccpy.md) | Copy characters from one buffer to another until given character or given number of characters has been copied |
17+
| [`memchr`, `wmemchr`](reference/memchr-wmemchr.md) | Return pointer to first occurrence, within specified number of characters, of given character in buffer |
18+
| [`memcmp`, `wmemcmp`](reference/memcmp-wmemcmp.md) | Compare specified number of characters from two buffers |
19+
| [`memcpy`, `wmemcpy`](reference/memcpy-wmemcpy.md), [`memcpy_s`, `wmemcpy_s`](reference/memcpy-s-wmemcpy-s.md) | Copy specified number of characters from one buffer to another |
20+
| [`_memicmp`, `_memicmp_l`](reference/memicmp-memicmp-l.md) | Compare specified number of characters from two buffers without regard to case |
21+
| [`memmove`, `wmemmove`](reference/memmove-wmemmove.md), [`memmove_s`, `wmemmove_s`](reference/memmove-s-wmemmove-s.md) | Copy specified number of characters from one buffer to another |
22+
| [`memset`, `wmemset`](reference/memset-wmemset.md) | Use given character to initialize specified number of bytes in the buffer |
23+
| [`_swab`](reference/swab.md) | Swap bytes of data and store them at specified location |
2424

2525
When the source and target areas overlap, only `memmove` is guaranteed to copy the full source properly.
2626

2727
## See also
2828

29-
[Universal C runtime routines by category](./run-time-routines-by-category.md)
29+
[Universal C runtime routines by category](run-time-routines-by-category.md)

docs/c-runtime-library/file-handling.md

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -10,62 +10,62 @@ ms.assetid: 48119e2e-e94f-4602-b08b-b72440f731d8
1010

1111
Use these routines to create, delete, and manipulate files and to set and check file-access permissions.
1212

13-
The C run-time libraries have a 512 limit for the number of files that can be open at any one time. Attempting to open more than the maximum number of file descriptors or file streams causes program failure. Use [`_setmaxstdio`](./reference/setmaxstdio.md) to change this number.
13+
The C run-time libraries have a 512 limit for the number of files that can be open at any one time. Attempting to open more than the maximum number of file descriptors or file streams causes program failure. Use [`_setmaxstdio`](reference/setmaxstdio.md) to change this number.
1414

1515
## File-handling routines (file descriptor)
1616

1717
These routines operate on files designated by a file descriptor.
1818

1919
| Routine | Use |
2020
|---|---|
21-
| [`_chsize`](./reference/chsize.md), [`_chsize_s`](./reference/chsize-s.md) | Change file size |
22-
| [`_filelength`, `_filelengthi64`](./reference/filelength-filelengthi64.md) | Get file length |
23-
| [`_fstat`, `_fstat32`, `_fstat64`, `_fstati64`, `_fstat32i64`, `_fstat64i32`](./reference/fstat-fstat32-fstat64-fstati64-fstat32i64-fstat64i32.md) | Get file-status information on descriptor |
24-
| [`_get_osfhandle`](./reference/get-osfhandle.md) | Return operating-system file handle associated with existing C run-time file descriptor |
25-
| [`_isatty`](./reference/isatty.md) | Check for character device |
26-
| [`_locking`](./reference/locking.md) | Lock areas of file |
27-
| [`_open_osfhandle`](./reference/open-osfhandle.md) | Associate C run-time file descriptor with existing operating-system file handle |
28-
| [`_setmode`](./reference/setmode.md) | Set file-translation mode |
21+
| [`_chsize`](reference/chsize.md), [`_chsize_s`](reference/chsize-s.md) | Change file size |
22+
| [`_filelength`, `_filelengthi64`](reference/filelength-filelengthi64.md) | Get file length |
23+
| [`_fstat`, `_fstat32`, `_fstat64`, `_fstati64`, `_fstat32i64`, `_fstat64i32`](reference/fstat-fstat32-fstat64-fstati64-fstat32i64-fstat64i32.md) | Get file-status information on descriptor |
24+
| [`_get_osfhandle`](reference/get-osfhandle.md) | Return operating-system file handle associated with existing C run-time file descriptor |
25+
| [`_isatty`](reference/isatty.md) | Check for character device |
26+
| [`_locking`](reference/locking.md) | Lock areas of file |
27+
| [`_open_osfhandle`](reference/open-osfhandle.md) | Associate C run-time file descriptor with existing operating-system file handle |
28+
| [`_setmode`](reference/setmode.md) | Set file-translation mode |
2929

3030
## File-Handling Routines (Path or Filename)
3131

3232
These routines operate on files specified by a path or filename.
3333

3434
| Routine | Use |
3535
|---|---|
36-
| [`_access`, `_waccess`](./reference/access-waccess.md), [`_access_s`, `_waccess_s`](./reference/access-s-waccess-s.md) | Check file-permission setting |
37-
| [`_chmod`, `_wchmod`](./reference/chmod-wchmod.md) | Change file-permission setting |
38-
| [`_fullpath`, `_wfullpath`](./reference/fullpath-wfullpath.md) | Expand a relative path to its absolute path name |
39-
| [`_makepath`, `_wmakepath`](./reference/makepath-wmakepath.md), [`_makepath_s`, `_wmakepath_s`](./reference/makepath-s-wmakepath-s.md) | Merge path components into single, full path |
40-
| [`_mktemp`, `_wmktemp`](./reference/mktemp-wmktemp.md), [`_mktemp_s`, `_wmktemp_s`](./reference/mktemp-s-wmktemp-s.md) | Create unique filename |
41-
| [`remove`, `_wremove`](./reference/remove-wremove.md) | Delete file |
42-
| [`rename`, `_wrename`](./reference/rename-wrename.md) | Rename file |
43-
| [`_splitpath`, `_wsplitpath`](./reference/splitpath-wsplitpath.md), [`_splitpath_s`, `_wsplitpath_s`](./reference/splitpath-s-wsplitpath-s.md) | Parse path into components |
44-
| [`_stat`, `_stat64`, `_stati64`, `_wstat`, `_wstat64`, `_wstati64`](./reference/stat-functions.md) | Get file-status information on named file |
45-
| [`_umask`](./reference/umask.md), [`_umask_s`](./reference/umask-s.md) | Set default permission mask for new files created by program |
46-
| [`_unlink`, `_wunlink`](./reference/unlink-wunlink.md) | Delete file |
36+
| [`_access`, `_waccess`](reference/access-waccess.md), [`_access_s`, `_waccess_s`](reference/access-s-waccess-s.md) | Check file-permission setting |
37+
| [`_chmod`, `_wchmod`](reference/chmod-wchmod.md) | Change file-permission setting |
38+
| [`_fullpath`, `_wfullpath`](reference/fullpath-wfullpath.md) | Expand a relative path to its absolute path name |
39+
| [`_makepath`, `_wmakepath`](reference/makepath-wmakepath.md), [`_makepath_s`, `_wmakepath_s`](reference/makepath-s-wmakepath-s.md) | Merge path components into single, full path |
40+
| [`_mktemp`, `_wmktemp`](reference/mktemp-wmktemp.md), [`_mktemp_s`, `_wmktemp_s`](reference/mktemp-s-wmktemp-s.md) | Create unique filename |
41+
| [`remove`, `_wremove`](reference/remove-wremove.md) | Delete file |
42+
| [`rename`, `_wrename`](reference/rename-wrename.md) | Rename file |
43+
| [`_splitpath`, `_wsplitpath`](reference/splitpath-wsplitpath.md), [`_splitpath_s`, `_wsplitpath_s`](reference/splitpath-s-wsplitpath-s.md) | Parse path into components |
44+
| [`_stat`, `_stat64`, `_stati64`, `_wstat`, `_wstat64`, `_wstati64`](reference/stat-functions.md) | Get file-status information on named file |
45+
| [`_umask`](reference/umask.md), [`_umask_s`](reference/umask-s.md) | Set default permission mask for new files created by program |
46+
| [`_unlink`, `_wunlink`](reference/unlink-wunlink.md) | Delete file |
4747

4848
## File-Handling Routines (Open File)
4949

5050
These routines open files.
5151

5252
| Routine | Use |
5353
|---|---|
54-
| [`fopen`, `_wfopen`](./reference/fopen-wfopen.md), [`fopen_s`, `_wfopen_s`](./reference/fopen-s-wfopen-s.md) | Opens a file and returns a pointer to the open file. |
55-
| [`_fsopen`, `_wfsopen`](./reference/fsopen-wfsopen.md) | Open a stream with file sharing and returns a pointer to the open file. |
56-
| [`_open`, `_wopen`](./reference/open-wopen.md) | Opens a file and returns a file descriptor to the opened file. |
57-
| [`_sopen`, `_wsopen`](./reference/sopen-wsopen.md), [`_sopen_s`, `_wsopen_s`](./reference/sopen-s-wsopen-s.md) | Open a file with file sharing and returns a file descriptor to the open file. |
58-
| [`_pipe`](./reference/pipe.md) | Creates a pipe for reading and writing. |
59-
| [`freopen`, `_wfreopen`](./reference/freopen-wfreopen.md), [`freopen_s`, `_wfreopen_s`](./reference/freopen-s-wfreopen-s.md) | Reassign a file pointer. |
54+
| [`fopen`, `_wfopen`](reference/fopen-wfopen.md), [`fopen_s`, `_wfopen_s`](reference/fopen-s-wfopen-s.md) | Opens a file and returns a pointer to the open file. |
55+
| [`_fsopen`, `_wfsopen`](reference/fsopen-wfsopen.md) | Open a stream with file sharing and returns a pointer to the open file. |
56+
| [`_open`, `_wopen`](reference/open-wopen.md) | Opens a file and returns a file descriptor to the opened file. |
57+
| [`_sopen`, `_wsopen`](reference/sopen-wsopen.md), [`_sopen_s`, `_wsopen_s`](reference/sopen-s-wsopen-s.md) | Open a file with file sharing and returns a file descriptor to the open file. |
58+
| [`_pipe`](reference/pipe.md) | Creates a pipe for reading and writing. |
59+
| [`freopen`, `_wfreopen`](reference/freopen-wfreopen.md), [`freopen_s`, `_wfreopen_s`](reference/freopen-s-wfreopen-s.md) | Reassign a file pointer. |
6060

6161
These routines provide a way to change the representation of the file between a `FILE` structure, a file descriptor, and a Win32 file handle.
6262

6363
| Routine | Use |
6464
|---|---|
65-
| [`_fdopen`, `_wfdopen`](./reference/fdopen-wfdopen.md) | Associates a stream with a file that was previously opened for low-level I/O and returns a pointer to the open stream. |
66-
| [`_fileno`](./reference/fileno.md) | Gets the file descriptor associated with a stream. |
67-
| [`_get_osfhandle`](./reference/get-osfhandle.md) | Return operating-system file handle associated with existing C run-time file descriptor |
68-
| [`_open_osfhandle`](./reference/open-osfhandle.md) | Associates C run-time file descriptor with an existing operating-system file handle. |
65+
| [`_fdopen`, `_wfdopen`](reference/fdopen-wfdopen.md) | Associates a stream with a file that was previously opened for low-level I/O and returns a pointer to the open stream. |
66+
| [`_fileno`](reference/fileno.md) | Gets the file descriptor associated with a stream. |
67+
| [`_get_osfhandle`](reference/get-osfhandle.md) | Return operating-system file handle associated with existing C run-time file descriptor |
68+
| [`_open_osfhandle`](reference/open-osfhandle.md) | Associates C run-time file descriptor with an existing operating-system file handle. |
6969

7070
The following Win32 functions also open files and pipes:
7171

@@ -77,6 +77,6 @@ The following Win32 functions also open files and pipes:
7777

7878
## See also
7979

80-
[Universal C runtime routines by category](./run-time-routines-by-category.md)\
81-
[Directory control](./directory-control.md)\
82-
[System calls](./system-calls.md)
80+
[Universal C runtime routines by category](run-time-routines-by-category.md)\
81+
[Directory control](directory-control.md)\
82+
[System calls](system-calls.md)

0 commit comments

Comments
 (0)