{"id":20418891,"url":"https://github.com/sehugg/libwordle","last_synced_at":"2026-06-05T08:31:15.319Z","repository":{"id":139692019,"uuid":"447320883","full_name":"sehugg/libwordle","owner":"sehugg","description":"C library for Wordle-like games","archived":false,"fork":false,"pushed_at":"2022-01-13T00:26:35.000Z","size":267,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-15T14:15:29.547Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sehugg.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-01-12T18:04:45.000Z","updated_at":"2022-01-31T06:11:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"a455d29f-650a-4b6d-9a10-0fc82e84d57d","html_url":"https://github.com/sehugg/libwordle","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sehugg%2Flibwordle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sehugg%2Flibwordle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sehugg%2Flibwordle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sehugg%2Flibwordle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sehugg","download_url":"https://codeload.github.com/sehugg/libwordle/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241960882,"owners_count":20049344,"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":[],"created_at":"2024-11-15T06:35:14.551Z","updated_at":"2025-03-05T04:17:44.559Z","avatar_url":"https://github.com/sehugg.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"libwordle\n=====\n\n[Open this project in 8bitworkshop](http://8bitworkshop.com/redir.html?platform=c64\u0026githubURL=https%3A%2F%2Fgithub.com%2Fsehugg%2Flibwordle\u0026file=libwordle.c).\n\nThis is a C library for making Wordle-like games for 8-bit systems.\n\nPlatforms supported:\n\n* C64 (cc65)\n\n[Wordle](https://www.powerlanguage.co.uk/wordle/) is a game by Josh Wardle.\n\n\n## Example\n\n```c\n#include \"libwordle.h\"\n\nvoid play(void) {\n  char buf[6];\n  int iter = 1;\n  int i, result;\n  \n  libwordle_initindex(\u0026w, ((unsigned int)rand()) % NUMWORDS);\n  printf(\"Word is: %s\\n\", w.target);\n  do {\n    printf(\"\\nGuess %d: \", iter);\n    gets(buf);\n    for (i=0; i\u003c5; i++) {\n      buf[i] = toupper(buf[i]);\n    }\n    result = libwordle_update(\u0026w, buf);\n    if (result == 0) continue;\n    if (result == 2) break;\n  } while (++iter \u003c= 7);\n}\n```\n\n## Technical Info\n\nThe test program takes about 24 KB, which includes:\n* 1.5 KB for the library code\n* 18 KB for the dictionary\n\nUncomment `#define LIBWORDLE_SMALLANDSLOW` to save 4 KB but make dictionary checks really really slow.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsehugg%2Flibwordle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsehugg%2Flibwordle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsehugg%2Flibwordle/lists"}