{"id":20930329,"url":"https://github.com/seff34/string-reverser-in-c","last_synced_at":"2026-04-29T04:04:16.587Z","repository":{"id":200376943,"uuid":"527674608","full_name":"seff34/String-Reverser-In-C","owner":"seff34","description":"Reverse String in C Standart Libs.","archived":false,"fork":false,"pushed_at":"2022-08-25T17:29:30.000Z","size":5,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-19T18:52:02.972Z","etag":null,"topics":["c","c99","cpp","reverse-string","reverse-strings"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/seff34.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2022-08-22T17:52:21.000Z","updated_at":"2022-09-27T18:15:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"97926510-964d-4608-b82c-a4c6a293f74b","html_url":"https://github.com/seff34/String-Reverser-In-C","commit_stats":null,"previous_names":["seff34/string-reverser-in-c"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seff34%2FString-Reverser-In-C","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seff34%2FString-Reverser-In-C/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seff34%2FString-Reverser-In-C/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seff34%2FString-Reverser-In-C/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/seff34","download_url":"https://codeload.github.com/seff34/String-Reverser-In-C/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243324266,"owners_count":20273100,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["c","c99","cpp","reverse-string","reverse-strings"],"created_at":"2024-11-18T21:32:01.512Z","updated_at":"2025-12-29T04:41:50.314Z","avatar_url":"https://github.com/seff34.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Reverse String in C\n\nReverse String in C Standart Libs.\n\n\n\n## API Functions\n\n#### Reverse String with Pointer\n```c\nchar* reversePointer(char *array);\n```\n\n| Parameter | Type     | Description                |\n| :-------- | :------- | :------------------------- |\n| `array` | `char*` | Input and Output Array |\n\n#### Reverse String with Index of Array\n```c\nchar* reverseArray(char *array);\n```\n\n| Parameter | Type     | Description                |\n| :-------- | :------- | :------------------------- |\n| `array` | `char*` | Input and Output Array |\n\n\n#### Example Code\n```c\n#include \"stringReverse.h\"\n\nint main(int argc, const char **argv)\n{\n    (void)argc;\n    (void)argv;\n\n    char array[] = \"Reverse Me\";\n\n    printf(\"Input                 - \u003e %s\\n\",array);\n    reversePointer(array);\n    printf(\"Reverse with Pointer  - \u003e %s\\n\",array);\n    reverseArray(array);\n    printf(\"Reverse with Array    - \u003e %s\\n\",array);\n\n\n    return EXIT_SUCCESS;\n}\n```\n\n\n\n\n\n\n\n## Download Code\n\nClone Project\n\n```bash\n  git clone https://github.com/seff34/String-Reverser\n```\n\n\n  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseff34%2Fstring-reverser-in-c","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fseff34%2Fstring-reverser-in-c","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseff34%2Fstring-reverser-in-c/lists"}