[PR #1008] [MERGED] Misc rot13 #1552

Closed
opened 2026-01-29 15:22:13 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1008
Author: @j3r3mias
Created: 10/7/2022
Status: Merged
Merged: 11/16/2022
Merged by: @Panquesito7

Base: masterHead: misc-rot13


📝 Commits (6)

  • c0a67a2 Add ROT13 cipher.
  • 1819f23 updating DIRECTORY.md
  • d353c6b Fix suggestions.
  • bc55120 Merge branch 'misc-rot13' of github.com:j3r3mias/C into misc-rot13
  • 65b0fcc Suggestions.
  • f249fd1 Merge branch 'master' into misc-rot13

📊 Changes

1 file changed (+60 additions, -0 deletions)

View changed files

misc/rot13.c (+60 -0)

📄 Description

Description of Change

An implementation of the cipher ROT13.

References

None

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • Added tests and example, test must pass
  • Relevant documentation/comments is changed or added
  • PR title follows semantic commit guidelines
  • Search previous suggestions before making a new one, as yours may be a duplicate.
  • I acknowledge that all my contributions will be made under the project's license.

Notes: Added in MISC because there is no crypto category.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/1008 **Author:** [@j3r3mias](https://github.com/j3r3mias) **Created:** 10/7/2022 **Status:** ✅ Merged **Merged:** 11/16/2022 **Merged by:** [@Panquesito7](https://github.com/Panquesito7) **Base:** `master` ← **Head:** `misc-rot13` --- ### 📝 Commits (6) - [`c0a67a2`](https://github.com/TheAlgorithms/C/commit/c0a67a2ede8b9de4bcff7e032f76a52b9fb45b04) Add ROT13 cipher. - [`1819f23`](https://github.com/TheAlgorithms/C/commit/1819f23fc37b55bb03f7cf44bfb3ab7f3deb1343) updating DIRECTORY.md - [`d353c6b`](https://github.com/TheAlgorithms/C/commit/d353c6b2038f7bd6f150ca667313285ae332e1e0) Fix suggestions. - [`bc55120`](https://github.com/TheAlgorithms/C/commit/bc55120095916c7eb8c6d556e1db7fd3f1d9e4ba) Merge branch 'misc-rot13' of github.com:j3r3mias/C into misc-rot13 - [`65b0fcc`](https://github.com/TheAlgorithms/C/commit/65b0fccab7b25203823e3e4185422dc37fbf776c) Suggestions. - [`f249fd1`](https://github.com/TheAlgorithms/C/commit/f249fd1bddbbee9f8c614999779cba78b11debe4) Merge branch 'master' into misc-rot13 ### 📊 Changes **1 file changed** (+60 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `misc/rot13.c` (+60 -0) </details> ### 📄 Description #### Description of Change An implementation of the cipher [ROT13](https://en.wikipedia.org/wiki/ROT13). #### References None #### Checklist - [x] Added description of change - [x] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [x] Added tests and example, test must pass - [x] Relevant documentation/comments is changed or added - [x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [x] Search previous suggestions before making a new one, as yours may be a duplicate. - [x] I acknowledge that all my contributions will be made under the project's license. Notes: Added in MISC because there is no crypto category. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:22:14 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1552