[PR #606] [MERGED] Added strlen function #1052

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/606
Author: @realDuYuanChao
Created: 9/23/2020
Status: Merged
Merged: 9/23/2020
Merged by: @Panquesito7

Base: masterHead: string


📝 Commits (4)

📊 Changes

3 files changed (+88 additions, -0 deletions)

View changed files

📝 DIRECTORY.md (+4 -0)
strings/strlen.c (+46 -0)
strings/strlen_recursion.c (+38 -0)

📄 Description

Description of Change

References

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:


🔄 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/606 **Author:** [@realDuYuanChao](https://github.com/realDuYuanChao) **Created:** 9/23/2020 **Status:** ✅ Merged **Merged:** 9/23/2020 **Merged by:** [@Panquesito7](https://github.com/Panquesito7) **Base:** `master` ← **Head:** `string` --- ### 📝 Commits (4) - [`c0bf529`](https://github.com/TheAlgorithms/C/commit/c0bf52949107f732c613d98e4f3dee7589dc269d) added strlen function - [`c46a28f`](https://github.com/TheAlgorithms/C/commit/c46a28fa5997109984382d6665406e649193a8a6) updating DIRECTORY.md - [`edb6375`](https://github.com/TheAlgorithms/C/commit/edb6375806f29785449352ec77493ba755259ee9) Update strings/strlen.c - [`b9bab8d`](https://github.com/TheAlgorithms/C/commit/b9bab8d07f8ebab49379c930cfd270d54f989ad8) Update strings/strlen_recursion.c ### 📊 Changes **3 files changed** (+88 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+4 -0) ➕ `strings/strlen.c` (+46 -0) ➕ `strings/strlen_recursion.c` (+38 -0) </details> ### 📄 Description #### Description of Change <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/TheAlgorithms/C-Plus-Plus/CONTRIBUTING.md --> #### References <!-- Add any reference to previous pull-request or issue --> #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [x] Added description of change - [x] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/CONTRIBUTING.md#New-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-Plus-Plus/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: <!-- Please add a one-line description for developers or pull request viewers --> <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/606"><img src="https://gitpod.io/api/apps/github/pbs/github.com/shellhub/C.git/b9bab8d07f8ebab49379c930cfd270d54f989ad8.svg" /></a> --- <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:17:08 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1052