{"id":13420428,"url":"https://github.com/atheme/libmowgli-2","last_synced_at":"2026-02-27T21:05:32.157Z","repository":{"id":3301178,"uuid":"4342858","full_name":"atheme/libmowgli-2","owner":"atheme","description":"mowgli development framework (version 2) -- generic runtime for atheme applications","archived":false,"fork":false,"pushed_at":"2024-04-01T21:58:25.000Z","size":2217,"stargazers_count":155,"open_issues_count":8,"forks_count":28,"subscribers_count":19,"default_branch":"master","last_synced_at":"2025-12-12T18:35:41.967Z","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":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/atheme.png","metadata":{"files":{"readme":"README","changelog":null,"contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2012-05-16T02:40:26.000Z","updated_at":"2025-11-17T19:03:28.000Z","dependencies_parsed_at":"2024-06-21T13:11:00.270Z","dependency_job_id":"d469a70a-e84e-442d-8368-1cfaac5d2c42","html_url":"https://github.com/atheme/libmowgli-2","commit_stats":{"total_commits":1098,"total_committers":51,"mean_commits":"21.529411764705884","dds":0.7249544626593807,"last_synced_commit":"21abd51006891ba89785cf198e130828453515ea"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/atheme/libmowgli-2","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atheme%2Flibmowgli-2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atheme%2Flibmowgli-2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atheme%2Flibmowgli-2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atheme%2Flibmowgli-2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/atheme","download_url":"https://codeload.github.com/atheme/libmowgli-2/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atheme%2Flibmowgli-2/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29913784,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T19:37:42.220Z","status":"ssl_error","status_checked_at":"2026-02-27T19:37:41.463Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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-07-30T22:01:33.482Z","updated_at":"2026-02-27T21:05:32.139Z","avatar_url":"https://github.com/atheme.png","language":"C","funding_links":[],"categories":["TODO scan for Android support in followings"],"sub_categories":[],"readme":"libmowgli - A useful collection of routines for programming\n-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\n\nlibmowgli is a free but copyrighted library, check COPYING for details.\n\n\nContents\n--------\n\n1. What is libmowgli?\n2. Installation\n3. Bug Reports\n\n\nWhat is libmowgli?\n------------------\n\nlibmowgli is a class library containing performance and usability oriented\nextensions to C.\n\nIt contains:\n    - mowgli.alloc: A safe wrapper around malloc/free.\n    - mowgli.argstack: Safe serialization of valists.\n    - mowgli.assert: Various assertion routines that can be used.\n    - mowgli.bitvector: Bitmasks with an unlimited level of precision.\n    - mowgli.patricia: A dictionary implementation based on a modified\n                       patricia tree algorithm (uses nibbles instead of\n                       bits for branching).\n    - mowgli.error_backtrace: Provide feedback to users on what caused\n                              the error they are recieving.\n    - mowgli.formatter: A simple token formatter which is sometimes useful.\n    - mowgli.global_storage: A simple global storage library.\n    - mowgli.hash: A portable implementation of the FNV-1 hash.\n    - mowgli.heap: An optimistic heap-based memory allocator\n    - mowgli.hook: A simple hooks API you can use for your application,\n                   which allows for hooks to provide both application\n                   data and user data.\n    - mowgli.json: A simple, flexible, reentrant JSON parser\n    - mowgli.list: A high performance linked lists implementation with\n                   O(1) scalability for most common operations.\n    - mowgli.logger: An internal class for handling logging of exceptions.\n    - mowgli.module: A wrapper around dlopen(3) and dlsym(3).\n    - mowgli.object: A simple class which provides reference counted\n                     pointers and polymorphism of structs.\n    - mowgli.object_class: Classing and subclassing for objects.\n    - mowgli.object_metadata: Metadata for objects.\n    - mowgli.object_messaging: Messaging and signalling for objects.\n    - mowgli.queue: A simple class which implements double-ended queues.\n    - mowgli.random: A high performance psuedo-random number generator.\n    - mowgli.signal: A wrapper for sigaction(2).\n    - mowgli.eventloop: A portable event loop implementation.\n    - mowgli.vio: An abstraction layer for I/O.\n    - mowgli.linebuf: A line-buffering implementation for clients.\n    - mowgli.thread: Minimal thread abstraction.\n\nMore classes will be added with later releases. Please use GitHub's\nissue tracker if you have suggestions on what should be implemented.\n\nInstallation\n------------\n\nInstallation is fairly typical:\n\n  $ ./configure\n  $ make\n  $ sudo make install\n\n(If sudo isn't on your system, su to root. On GNU systems you can even do\n\"su -c 'make install'\", which is basically the same thing as using sudo.)\n\n\nBug Reports\n-----------\n\nBugs can be reported using the GitHub issue tracker on the libmowgli-2\nproject page: https://github.com/atheme/libmowgli-2/issues\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatheme%2Flibmowgli-2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatheme%2Flibmowgli-2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatheme%2Flibmowgli-2/lists"}