Skip to content

Commit

Permalink
update repo
Browse files Browse the repository at this point in the history
  • Loading branch information
dezashibi committed Aug 13, 2024
1 parent eee285f commit d397b87
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,13 +145,13 @@ This approach not only simplifies cross-platform development but also ensures th
- the latest release:

```bash
wget https://github.com/dezashibi-c-projects/dmmap/releases/download/$(curl -s https://api.github.com/repos/dezashibi-c-projects/dmmap/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")')/dmmap.h
wget https://github.com/dezashibi-c/dmmap/releases/download/$(curl -s https://api.github.com/repos/dezashibi-c/dmmap/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")')/dmmap.h
```

- the specific version (remember to change `<version>` with the version you need)

```bash
https://github.com/dezashibi-c-projects/dmmap/releases/download/<version>/dmmap.h
https://github.com/dezashibi-c/dmmap/releases/download/<version>/dmmap.h
```

**the header file is suffucuent and contains usage guide**
Expand Down Expand Up @@ -203,6 +203,10 @@ This ensures that all resources are properly freed, preventing memory leaks or f
This cross-platform memory-mapped file access library abstracts away the differences between Windows and POSIX systems, providing a unified interface for memory-mapped file operations. By using this single-header library, developers can easily integrate memory-mapped file access into their C projects without worrying about platform-specific details. The library is efficient, easy to use, and fully portable, making it a valuable tool for any C programmer dealing with file I/O operations.
## Contribution
Please refer to [my coding style guide](https://github.com/dezashibi-c/.github/blob/main/coding_style.md) if you'd like to contribute.
## License for `dmmap.h`
BSD 3-Clause License
Expand Down
2 changes: 1 addition & 1 deletion dmmap.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ***************************************************************************************
// Project: Easy Cross-Platform File Mapping with a Single-Header C Library
// Repository: https://github.com/dezashibi-c-projects/dmmap
// Repository: https://github.com/dezashibi-c/dmmap
// File: dmmap.h
// Date: 2024-08-09
// Author: Navid Dezashibi
Expand Down

0 comments on commit d397b87

Please sign in to comment.