repo_full_name
stringlengths
6
93
repo_url
stringlengths
25
112
repo_api_url
stringclasses
28 values
owner
stringclasses
28 values
repo_name
stringclasses
28 values
description
stringclasses
28 values
stars
int64
617
98.8k
forks
int64
31
355
watchers
int64
990
999
license
stringclasses
2 values
default_branch
stringclasses
2 values
repo_created_at
timestamp[s]date
2012-07-24 23:12:50
2025-06-16 08:07:28
repo_updated_at
timestamp[s]date
2026-02-23 15:23:15
2026-05-03 18:52:12
repo_topics
listlengths
0
13
repo_languages
unknown
is_fork
bool
1 class
open_issues
int64
3
104
file_path
stringlengths
3
208
file_name
stringclasses
509 values
file_extension
stringclasses
1 value
file_size_bytes
int64
101
84k
file_url
stringclasses
627 values
file_raw_url
stringclasses
627 values
file_sha
stringclasses
624 values
language
stringclasses
8 values
parsed_at
stringdate
2026-05-04 01:12:36
2026-05-04 19:41:55
text
stringlengths
100
102k
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/EpdFont/EpdFontData.h
null
null
null
null
null
null
C
2026-05-04T18:28:56.722455
// From // https://github.com/vroland/epdiy/blob/c61e9e923ce2418150d54f88cea5d196cdc40c54/src/epd_internals.h #pragma once #include <cstdint> /// Font metrics use "fixed-point 4" (4 fractional bits, i.e. 1/16-pixel /// resolution). Both the 12.4 glyph advances (uint16_t) and the 4.4 kern /// values (int8_t) share th...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/FootnoteEntry.h
null
null
null
null
null
null
C
2026-05-04T18:28:56.723938
#pragma once #include <cstring> #define FOOTNOTE_NUMBER_LEN 32 #define FOOTNOTE_HREF_LEN 96 struct FootnoteEntry { char number[FOOTNOTE_NUMBER_LEN]; char href[FOOTNOTE_HREF_LEN]; FootnoteEntry() { number[0] = '\0'; href[0] = '\0'; } };
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/EpdFont/FontDecompressor.h
null
null
null
null
null
null
C
2026-05-04T18:28:56.726711
#pragma once #include <InflateReader.h> #include <vector> #include "EpdFontData.h" class FontDecompressor { public: static constexpr uint16_t MAX_PAGE_GLYPHS = 512; static constexpr uint8_t MAX_PAGE_SLOTS = 4; // One per font style (R/B/I/BI) FontDecompressor() = default; ~FontDecompressor(); bool ini...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub.h
null
null
null
null
null
null
C
2026-05-04T18:28:56.729664
#pragma once #include <Print.h> #include <memory> #include <string> #include <unordered_map> #include <vector> #include "Epub/BookMetadataCache.h" #include "Epub/css/CssParser.h" class ZipFile; class Epub { // the ncx file (EPUB 2) std::string tocNcxItem; // the nav file (EPUB 3) std::string tocNavItem; ...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/EpdFont/EpdFont.h
null
null
null
null
null
null
C
2026-05-04T18:28:56.733253
#pragma once #include "EpdFontData.h" class EpdFont { void getTextBounds(const char* string, int startX, int startY, int* minX, int* minY, int* maxX, int* maxY) const; public: const EpdFontData* data; explicit EpdFont(const EpdFontData* data) : data(data) {} ~EpdFont() = default; void getTextDimensions(con...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/EpdFont/builtinFonts/all.h
null
null
null
null
null
null
C
2026-05-04T18:28:56.734430
#pragma once #include <builtinFonts/notoserif_12_bold.h> #include <builtinFonts/notoserif_12_bolditalic.h> #include <builtinFonts/notoserif_12_italic.h> #include <builtinFonts/notoserif_12_regular.h> #include <builtinFonts/notoserif_14_bold.h> #include <builtinFonts/notoserif_14_bolditalic.h> #include <builtinFonts/no...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/Page.h
null
null
null
null
null
null
C
2026-05-04T18:28:56.761980
#pragma once #include <HalStorage.h> #include <algorithm> #include <string> #include <utility> #include <vector> #include "FootnoteEntry.h" #include "blocks/ImageBlock.h" #include "blocks/TextBlock.h" enum PageElementTag : uint8_t { TAG_PageLine = 1, TAG_PageImage = 2, // New tag }; // represents something tha...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/ParsedText.h
null
null
null
null
null
null
C
2026-05-04T18:28:56.765530
#pragma once #include <EpdFontFamily.h> #include <functional> #include <memory> #include <string> #include <vector> #include "blocks/BlockStyle.h" #include "blocks/TextBlock.h" class GfxRenderer; class ParsedText { std::vector<std::string> words; std::vector<EpdFontFamily::Style> wordStyles; std::vector<bool...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/converters/JpegToFramebufferConverter.h
null
null
null
null
null
null
C
2026-05-04T18:28:57.525098
#pragma once #include <stdint.h> #include <string> #include "ImageToFramebufferDecoder.h" class JpegToFramebufferConverter final : public ImageToFramebufferDecoder { public: static bool getDimensionsStatic(const std::string& imagePath, ImageDimensions& out); bool decodeToFramebuffer(const std::string& imagePa...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/converters/ImageDecoderFactory.h
null
null
null
null
null
null
C
2026-05-04T18:28:57.543538
#pragma once #include <cstdint> #include <memory> #include <string> #include "ImageToFramebufferDecoder.h" class JpegToFramebufferConverter; class PngToFramebufferConverter; class ImageDecoderFactory { public: // Returns non-owning pointer - factory owns the decoder lifetime static ImageToFramebufferDecoder* ge...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/blocks/Block.h
null
null
null
null
null
null
C
2026-05-04T18:28:57.547220
#pragma once class GfxRenderer; typedef enum { TEXT_BLOCK, IMAGE_BLOCK } BlockType; // a block of content in the html - either a paragraph or an image class Block { public: virtual ~Block() = default; virtual BlockType getType() = 0; virtual bool isEmpty() = 0; virtual void finish() {} };
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/converters/ImageToFramebufferDecoder.h
null
null
null
null
null
null
C
2026-05-04T18:28:57.548652
#pragma once #include <HalStorage.h> #include <memory> #include <string> class GfxRenderer; struct ImageDimensions { int16_t width; int16_t height; }; struct RenderConfig { int x, y; int maxWidth, maxHeight; bool useGrayscale = true; bool useDithering = true; bool performanceMode = false; bool useEx...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/converters/DitherUtils.h
null
null
null
null
null
null
C
2026-05-04T18:28:57.561755
#pragma once #include <stdint.h> // 4x4 Bayer matrix for ordered dithering inline const uint8_t bayer4x4[4][4] = { {0, 8, 2, 10}, {12, 4, 14, 6}, {3, 11, 1, 9}, {15, 7, 13, 5}, }; // Apply Bayer dithering and quantize to 4 levels (0-3) // Stateless - works correctly with any pixel processing order in...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/blocks/ImageBlock.h
null
null
null
null
null
null
C
2026-05-04T18:28:57.564481
#pragma once #include <HalStorage.h> #include <memory> #include <string> #include "Block.h" class ImageBlock final : public Block { public: ImageBlock(const std::string& imagePath, int16_t width, int16_t height); ~ImageBlock() override = default; const std::string& getImagePath() const { return imagePath; } ...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/blocks/TextBlock.h
null
null
null
null
null
null
C
2026-05-04T18:28:57.565038
#pragma once #include <EpdFontFamily.h> #include <HalStorage.h> #include <memory> #include <string> #include <vector> #include "Block.h" #include "BlockStyle.h" // Represents a line of text on a page class TextBlock final : public Block { private: std::vector<std::string> words; std::vector<int16_t> wordXpos; ...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/blocks/BlockStyle.h
null
null
null
null
null
null
C
2026-05-04T18:28:57.608511
#pragma once #include <algorithm> #include <cstdint> #include "Epub/css/CssStyle.h" /** * BlockStyle - Block-level styling properties */ struct BlockStyle { // Upper bound (in em) for any single side's horizontal margin or padding. // Some EPUBs apply huge em-based insets to chapter-opener classes; without a ...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/Section.h
null
null
null
null
null
null
C
2026-05-04T18:28:57.636749
#pragma once #include <functional> #include <memory> #include <optional> #include <string> #include "Epub.h" class Page; class GfxRenderer; class Section { std::shared_ptr<Epub> epub; const int spineIndex; GfxRenderer& renderer; std::string filePath; FsFile file; void writeSectionFileHeader(int fontId, ...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/converters/DirectPixelWriter.h
null
null
null
null
null
null
C
2026-05-04T18:28:57.638407
#pragma once #include <GfxRenderer.h> #include <HalDisplay.h> #include <stdint.h> // Direct framebuffer writer that eliminates per-pixel overhead from the image // rendering hot path. Pre-computes orientation transform as linear coefficients // and caches render-mode state so the inner loop is: one multiply, one add...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/converters/PixelCache.h
null
null
null
null
null
null
C
2026-05-04T18:28:58.188373
#pragma once #include <HalStorage.h> #include <Logging.h> #include <stdint.h> #include <cstring> #include <string> // Cache buffer for storing 2-bit pixels (4 levels) during decode. // Packs 4 pixels per byte, MSB first. struct PixelCache { uint8_t* buffer; int width; int height; int bytesPerRow; int origi...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/converters/PngToFramebufferConverter.h
null
null
null
null
null
null
C
2026-05-04T18:28:58.201366
#pragma once #include "ImageToFramebufferDecoder.h" class PngToFramebufferConverter final : public ImageToFramebufferDecoder { public: static bool getDimensionsStatic(const std::string& imagePath, ImageDimensions& out); bool decodeToFramebuffer(const std::string& imagePath, GfxRenderer& renderer, const RenderCo...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/css/CssStyle.h
null
null
null
null
null
null
C
2026-05-04T18:28:58.201949
#pragma once #include <cstdint> // Matches order of PARAGRAPH_ALIGNMENT in CrossPointSettings enum class CssTextAlign : uint8_t { Justify = 0, Left = 1, Center = 2, Right = 3, None = 4 }; enum class CssUnit : uint8_t { Pixels = 0, Em = 1, Rem = 2, Points = 3, Percent = 4 }; // Represents a CSS length value with its ...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/hyphenation/Hyphenator.h
null
null
null
null
null
null
C
2026-05-04T18:28:58.205025
#pragma once #include <cstddef> #include <string> #include <vector> class LanguageHyphenator; class Hyphenator { public: struct BreakInfo { size_t byteOffset; // Byte position inside the UTF-8 word where a break may occur. bool requiresInsertedHyphen; // true = a visible '-' must be rendered a...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/css/CssParser.h
null
null
null
null
null
null
C
2026-05-04T18:28:58.234774
#pragma once #include <HalStorage.h> #include <string> #include <unordered_map> #include <utility> #include <vector> #include "CssStyle.h" /** * Lightweight CSS parser for EPUB stylesheets * * Parses CSS files and extracts styling information relevant for e-ink display. * Uses a two-phase approach: first tokeni...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/htmlEntities.h
null
null
null
null
null
null
C
2026-05-04T18:28:58.246948
// based on // https://github.com/atomic14/diy-esp32-epub-reader/blob/2c2f57fdd7e2a788d14a0bcb26b9e845a47aac42/lib/Epub/RubbishHtmlParser/htmlEntities.cpp #pragma once #include <string> // Lookup a single HTML entity (including & and ;) and return its UTF-8 value // Returns nullptr if entity is not found const char* ...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/hyphenation/LanguageHyphenator.h
null
null
null
null
null
null
C
2026-05-04T18:28:58.247882
#pragma once #include "LiangHyphenation.h" // Generic Liang-backed hyphenator that stores pattern metadata plus language-specific helpers. class LanguageHyphenator { public: LanguageHyphenator(const SerializedHyphenationPatterns& patterns, bool (*isLetterFn)(uint32_t), uint32_t (*toLowerFn)(ui...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/hyphenation/LiangHyphenation.h
null
null
null
null
null
null
C
2026-05-04T18:28:58.292729
#pragma once #include <cstddef> #include <cstdint> #include <vector> #include "HyphenationCommon.h" #include "SerializedHyphenationTrie.h" // Encapsulates every language-specific dial the Liang algorithm needs at runtime. The helpers are // intentionally represented as bare function pointers because we invoke them ...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/hyphenation/LanguageRegistry.h
null
null
null
null
null
null
C
2026-05-04T18:28:58.293899
#pragma once #include <cstddef> #include <string> #include "LanguageHyphenator.h" struct LanguageEntry { const char* cliName; const char* primaryTag; const LanguageHyphenator* hyphenator; }; struct LanguageEntryView { const LanguageEntry* data; size_t size; const LanguageEntry* begin() const { return d...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/hyphenation/HyphenationCommon.h
null
null
null
null
null
null
C
2026-05-04T18:28:58.301409
#pragma once #include <cstddef> #include <cstdint> #include <string> #include <vector> struct CodepointInfo { uint32_t value; size_t byteOffset; }; uint32_t toLowerLatin(uint32_t cp); uint32_t toLowerCyrillic(uint32_t cp); bool isLatinLetter(uint32_t cp); bool isCyrillicLetter(uint32_t cp); bool isAlphabetic(u...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/hyphenation/SerializedHyphenationTrie.h
null
null
null
null
null
null
C
2026-05-04T18:28:58.790567
#pragma once #include <cstddef> #include <cstdint> // Lightweight descriptor that points at a serialized Liang hyphenation trie stored in flash. struct SerializedHyphenationPatterns { size_t rootOffset; const std::uint8_t* data; size_t size; };
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/parsers/ChapterHtmlSlimParser.h
null
null
null
null
null
null
C
2026-05-04T18:28:58.848000
#pragma once #include <expat.h> #include <climits> #include <functional> #include <memory> #include <string> #include <vector> #include "../FootnoteEntry.h" #include "../ParsedText.h" #include "../blocks/ImageBlock.h" #include "../blocks/TextBlock.h" #include "../css/CssParser.h" #include "../css/CssStyle.h" class ...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/parsers/ContentOpfParser.h
null
null
null
null
null
null
C
2026-05-04T18:28:58.903416
#pragma once #include <Print.h> #include <algorithm> #include <deque> #include <vector> #include "Epub.h" #include "expat.h" class BookMetadataCache; class ContentOpfParser final : public Print { enum ParserState { START, IN_PACKAGE, IN_METADATA, IN_BOOK_TITLE, IN_BOOK_AUTHOR, IN_BOOK_LANG...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/parsers/TocNavParser.h
null
null
null
null
null
null
C
2026-05-04T18:28:58.908089
#pragma once #include <Print.h> #include <expat.h> #include <string> class BookMetadataCache; // Parser for EPUB 3 nav.xhtml navigation documents // Parses HTML5 nav elements with epub:type="toc" to extract table of contents class TocNavParser final : public Print { enum ParserState { START, IN_HTML, I...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/parsers/ContainerParser.h
null
null
null
null
null
null
C
2026-05-04T18:28:58.938439
#pragma once #include <Print.h> #include <string> #include "expat.h" class ContainerParser final : public Print { enum ParserState { START, IN_CONTAINER, IN_ROOTFILES, }; size_t remainingSize; XML_Parser parser = nullptr; ParserState state = START; static void startElement(void* userData, c...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/FsHelpers/FsHelpers.h
null
null
null
null
null
null
C
2026-05-04T18:28:58.939487
#pragma once #include <WString.h> #include <string> #include <string_view> namespace FsHelpers { std::string normalisePath(const std::string& path); /** * Check if the given filename ends with the specified extension (case-insensitive). */ bool checkFileExtension(std::string_view fileName, const char* extension);...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/Epub/Epub/parsers/TocNcxParser.h
null
null
null
null
null
null
C
2026-05-04T18:28:58.956562
#pragma once #include <Print.h> #include <expat.h> #include <string> class BookMetadataCache; class TocNcxParser final : public Print { enum ParserState { START, IN_NCX, IN_NAV_MAP, IN_NAV_POINT, IN_NAV_LABEL, IN_NAV_LABEL_TEXT, IN_CONTENT }; const std::string& baseContentPath; size_t remainingSize; XML_Par...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/GfxRenderer/GfxRenderer.h
null
null
null
null
null
null
C
2026-05-04T18:28:59.795915
#pragma once #include <EpdFontFamily.h> #include <HalDisplay.h> class FontCacheManager; #include <cstring> #include <map> #include <string> #include <vector> #include "Bitmap.h" // Color representation: uint8_t mapped to 4x4 Bayer matrix dithering levels // 0 = transparent, 1-16 = gray levels (white to black) enum...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/GfxRenderer/BitmapHelpers.h
null
null
null
null
null
null
C
2026-05-04T18:28:59.816635
#pragma once #include <cstdint> #include <cstring> struct BmpHeader; // Helper functions uint8_t quantize(int gray, int x, int y); uint8_t quantizeSimple(int gray); uint8_t quantize1bit(int gray, int x, int y); int adjustPixel(int gray); enum class BmpRowOrder { BottomUp, TopDown }; // Populates a 1-bit BMP header...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/GfxRenderer/FontCacheManager.h
null
null
null
null
null
null
C
2026-05-04T18:28:59.908873
#pragma once #include <EpdFontFamily.h> #include <cstdint> #include <map> #include <string> class FontDecompressor; class FontCacheManager { public: explicit FontCacheManager(const std::map<int, EpdFontFamily>& fontMap); void setFontDecompressor(FontDecompressor* d); void clearCache(); void prewarmCache(...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/KOReaderSync/ChapterXPathResolver.h
null
null
null
null
null
null
C
2026-05-04T18:28:59.975863
#pragma once #include <Epub.h> #include <cstdint> #include <memory> #include <string> class ChapterXPathResolver { public: /** * Resolve the Nth paragraph in a spine item to its real XHTML ancestry path. * * Returns a KOReader-compatible path like: * /body/DocFragment[8]/body/div[2]/section[1]/p[4] ...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/GfxRenderer/Bitmap.h
null
null
null
null
null
null
C
2026-05-04T18:29:00.023020
#pragma once #include <HalStorage.h> #include <cstdint> #include "BitmapHelpers.h" #pragma pack(push, 1) struct BmpHeader { struct { uint16_t bfType; uint32_t bfSize; uint16_t bfReserved1; uint16_t bfReserved2; uint32_t bfOffBits; } fileHeader; struct { uint32_t biSize; int32_t biW...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/I18n/I18n.h
null
null
null
null
null
null
C
2026-05-04T18:29:00.481804
#pragma once #include <cstdint> #include "I18nKeys.h" /** * Internationalization (i18n) system for CrossPoint Reader */ class I18n { public: static I18n& getInstance(); // Disable copy I18n(const I18n&) = delete; I18n& operator=(const I18n&) = delete; // Get localized string by ID const char* get(St...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/JpegToBmpConverter/JpegToBmpConverter.h
null
null
null
null
null
null
C
2026-05-04T18:29:00.594669
#pragma once #include <HalStorage.h> class Print; class ZipFile; class JpegToBmpConverter { static bool jpegFileToBmpStreamInternal(FsFile& jpegFile, Print& bmpOut, int targetWidth, int targetHeight, bool oneBit, bool crop = true); public: static bool jpegFileToBmpStre...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/JsonParser/StreamingJsonParser.h
null
null
null
null
null
null
C
2026-05-04T18:29:00.650111
#pragma once #include <cstddef> #include <cstdint> struct JsonCallbacks { void* ctx; void (*onKey)(void* ctx, const char* key, size_t len); void (*onString)(void* ctx, const char* value, size_t len); void (*onNumber)(void* ctx, const char* value, size_t len); void (*onBool)(void* ctx, bool value); void (*...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/JsonParser/ReleaseJsonParser.h
null
null
null
null
null
null
C
2026-05-04T18:29:00.673492
#pragma once #include <cstddef> #include <cstdint> #include "StreamingJsonParser.h" class ReleaseJsonParser { public: ReleaseJsonParser(); ReleaseJsonParser(const ReleaseJsonParser&) = delete; ReleaseJsonParser& operator=(const ReleaseJsonParser&) = delete; void reset(); void feed(const char* data, size...
crosspoint-reader/crosspoint-reader
https://github.com/crosspoint-reader/crosspoint-reader
null
null
null
null
4,114
null
null
mit
null
null
null
null
null
null
null
lib/InflateReader/InflateReader.h
null
null
null
null
null
null
C
2026-05-04T18:29:00.697214
#pragma once #include <uzlib.h> #include <cstddef> // Return value for readAtMost(). enum class InflateStatus { Ok, // Output buffer full; more compressed data remains. Done, // Stream ended cleanly (TINF_DONE). produced may be < maxLen. Error, // Decompression failed. }; // Streaming deflate decompres...
zserge/jsmn
https://github.com/zserge/jsmn
null
null
null
null
4,109
null
null
mit
null
null
null
null
null
null
null
example/jsondump.c
null
null
null
null
null
null
C
2026-05-04T18:29:03.467976
#include "../jsmn.h" #include <errno.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> /* Function realloc_it() is a wrapper function for standard realloc() * with one difference - it frees old memory pointer in case of realloc * failure. Thus, DO NOT use old data pointer in anyway af...
zserge/jsmn
https://github.com/zserge/jsmn
null
null
null
null
4,109
null
null
mit
null
null
null
null
null
null
null
jsmn.h
null
null
null
null
null
null
C
2026-05-04T18:29:03.468599
/* * MIT License * * Copyright (c) 2010 Serge Zaitsev * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, mo...
zserge/jsmn
https://github.com/zserge/jsmn
null
null
null
null
4,109
null
null
mit
null
null
null
null
null
null
null
example/simple.c
null
null
null
null
null
null
C
2026-05-04T18:29:03.477738
#include "../jsmn.h" #include <stdio.h> #include <stdlib.h> #include <string.h> /* * A small example of jsmn parsing when JSON structure is known and number of * tokens is predictable. */ static const char *JSON_STRING = "{\"user\": \"johndoe\", \"admin\": false, \"uid\": 1000,\n " "\"groups\": [\"users\"...
zserge/jsmn
https://github.com/zserge/jsmn
null
null
null
null
4,109
null
null
mit
null
null
null
null
null
null
null
test/tests.c
null
null
null
null
null
null
C
2026-05-04T18:29:03.478296
#include <stdarg.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "test.h" #include "testutil.h" int test_empty(void) { check(parse("{}", 1, 1, JSMN_OBJECT, 0, 2, 0)); check(parse("[]", 1, 1, JSMN_ARRAY, 0, 2, 0)); check(parse("[{},{}]", 3, 3, JSMN_ARRAY, 0, 7, 2, JSMN_OBJECT, 1, 3, 0, ...
zserge/jsmn
https://github.com/zserge/jsmn
null
null
null
null
4,109
null
null
mit
null
null
null
null
null
null
null
test/test.h
null
null
null
null
null
null
C
2026-05-04T18:29:03.488623
#ifndef __TEST_H__ #define __TEST_H__ static int test_passed = 0; static int test_failed = 0; /* Terminate current test with error */ #define fail() return __LINE__ /* Successful end of the test case */ #define done() return 0 /* Check single condition */ #define check(cond) ...
zserge/jsmn
https://github.com/zserge/jsmn
null
null
null
null
4,109
null
null
mit
null
null
null
null
null
null
null
test/testutil.h
null
null
null
null
null
null
C
2026-05-04T18:29:03.490524
#ifndef __TEST_UTIL_H__ #define __TEST_UTIL_H__ #include "../jsmn.h" static int vtokeq(const char *s, jsmntok_t *t, unsigned long numtok, va_list ap) { if (numtok > 0) { unsigned long i; int start, end, size; jsmntype_t type; char *value; size = -1; value = NULL; for (...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
examples/C/minimal/main.c
null
null
null
null
null
null
C
2026-05-04T18:29:07.189612
// WebUI C - Minimal Example #include "webui.h" int main() { size_t my_window = webui_new_window(); webui_show(my_window, "<html><head><script src=\"webui.js\"></script></head> Hello World ! </html>"); webui_wait(); return 0; } #if defined(_MSC_VER) int APIENTRY WinMain(HINSTANCE hInst, HINSTANCE hInstPrev, PST...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
examples/C/frameless/main.c
null
null
null
null
null
null
C
2026-05-04T18:29:07.197327
// WebUI C - Frameless Example #include "webui.h" const char* html = "<html>" " <head>" " <meta charset='UTF-8'>" " <script src=\"webui.js\"></script>" " <style>" " * { margin: 0; padding: 0; box-sizing: border-box; }" " html, body { height: 100%; width: 100%; overflow: hidden; background: transpa...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
examples/C/call_c_from_js/main.c
null
null
null
null
null
null
C
2026-05-04T18:29:07.201123
// Call C from JavaScript Example #include "webui.h" void my_function_string(webui_event_t* e) { // JavaScript: // my_function_string('Hello', 'World`); const char* str_1 = webui_get_string(e); // Or webui_get_string_at(e, 0); const char* str_2 = webui_get_string_at(e, 1); printf("my_function_string 1: %s\n",...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
examples/C/call_js_from_c/main.c
null
null
null
null
null
null
C
2026-05-04T18:29:07.202426
// Call JavaScript from C Example #include "webui.h" void my_function_exit(webui_event_t* e) { // Close all opened windows webui_exit(); } void my_function_count(webui_event_t* e) { // This function gets called every time the user clicks on "my_function_count" // Create a buffer to hold the response char res...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
examples/C/chatgpt_api/main.c
null
null
null
null
null
null
C
2026-05-04T18:29:07.204007
// WebUI C - ChatGPT HTTPS API Example #include "webui.h" // ChatGPT Configuration #define USER_KEY "sk-proj-xxx-xxxxxxxxxxxxxxxxxxxxxxx_xxx" #define USER_MODEL "gpt-4o" #define USER_ASSISTANT "You are an assistant, answer with very short messages." #define BUF_SIZE (1024) size_t hiddenWindow = 0; // HTML const cha...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
examples/C/public_network_access/main.c
null
null
null
null
null
null
C
2026-05-04T18:29:07.205166
// Public Network Access Example #include "webui.h" // Windows size_t private_window = 0; size_t public_window = 0; void app_exit(webui_event_t* e) { webui_exit(); } void public_window_events(webui_event_t* e) { if (e->event_type == WEBUI_EVENT_CONNECTED) { // New connection webui_run(private_window, "documen...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
examples/C/custom_web_server/main.c
null
null
null
null
null
null
C
2026-05-04T18:29:07.219533
// Serve a Folder Example #include "webui.h" void events(webui_event_t* e) { // This function gets called every time // there is an event if (e->event_type == WEBUI_EVENT_CONNECTED) printf("Connected. \n"); else if (e->event_type == WEBUI_EVENT_DISCONNECTED) printf("Disconnected. \n"); else if (e->event_ty...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
examples/C++/virtual_file_system/vfs.h
null
null
null
null
null
null
C
2026-05-04T18:29:07.249476
#ifndef VIRTUAL_FILE_SYSTEM_H #define VIRTUAL_FILE_SYSTEM_H typedef struct { const char *path; const unsigned char *data; int length; } VirtualFile; static const unsigned char FILE_0[] = {0x3c,0x21,0x64,0x6f,0x63,0x74,0x79,0x70,0x65,0x20,0x68,0x74,0x6d,0x6c,0x3e,0x0d,0x0a,0x3c,0x68,0x74,0x6d,0x6c,0x3e,0x0...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
examples/C/react/main.c
null
null
null
null
null
null
C
2026-05-04T18:29:07.302990
// React Example #include "webui.h" #include "vfs.h" void exit_app(webui_event_t* e) { webui_exit(); } int main() { // Create new windows size_t react_window = webui_new_window(); // Set window size webui_set_size(react_window, 550, 450); // Set window position webui_set_position(react...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
examples/C++/test_index_redirect/vfs.h
null
null
null
null
null
null
C
2026-05-04T18:29:07.365441
#ifndef VIRTUAL_FILE_SYSTEM_H #define VIRTUAL_FILE_SYSTEM_H typedef struct { const char *path; const unsigned char *data; int length; } VirtualFile; static const unsigned char FILE_0[] = {0x3c,0x21,0x64,0x6f,0x63,0x74,0x79,0x70,0x65,0x20,0x68,0x74,0x6d,0x6c,0x3e,0x0d,0x0a,0x3c,0x68,0x74,0x6d,0x6c,0x20,0x6...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
examples/C/serve_a_folder/main.c
null
null
null
null
null
null
C
2026-05-04T18:29:07.831299
// Serve a Folder Example #include "webui.h" // Those defines is to avoid using global variables // you can also use `const size_t MyWindow;`. // A window ID can be between 1 and 512 (WEBUI_MAX_IDS) #define MyWindow (1) #define MySecondWindow (2) void exit_app(webui_event_t* e) { // Close all opened windo...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
examples/C/text-editor/main.c
null
null
null
null
null
null
C
2026-05-04T18:29:07.898271
// Text Editor in C using WebUI #include "webui.h" void close_app(webui_event_t* e) { printf("Exit.\n"); // Close all opened windows webui_exit(); } int main() { // Create a new window int MainWindow = webui_new_window(); // Set the root folder for the UI webui_set_root_folder(MainWindow, "ui"); // Bind ...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
examples/C/virtual_file_system/main.c
null
null
null
null
null
null
C
2026-05-04T18:29:07.912923
// Virtual File System Example #include "webui.h" #include "vfs.h" void exit_app(webui_event_t* e) { webui_exit(); } int main() { // Create new windows size_t MyWindow = webui_new_window(); // Bind HTML element IDs with a C functions webui_bind(MyWindow, "Exit", exit_app); // VSF (Virtual File System) Examp...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
include/webui_extensions.h
null
null
null
null
null
null
C
2026-05-04T18:29:07.917750
/* WebUI Library https://webui.me https://github.com/webui-dev/webui Copyright (c) 2020-2026 Hassan Draga. Licensed under MIT License. All rights reserved. Canada. */ #ifndef _WEBUI_EXTENSIONS_H #define _WEBUI_EXTENSIONS_H #include "webui.h" #ifdef __cplusplus extern "C" { #endif /** * @brief Constru...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
examples/C/web_app_multi_client/main.c
null
null
null
null
null
null
C
2026-05-04T18:29:07.926492
// Web App Multi-Client Example #include "webui.h" // Arrays to hold permanent data char privateInput_arr[256][1024] = {0}; // One for each user char publicInput_arr[1024] = {0}; // One for all users int users_count = 0; int tab_count = 0; void exit_app(webui_event_t* e) { // Close all opened windows webui_exit();...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
examples/C/test_index_redirect/main.c
null
null
null
null
null
null
C
2026-05-04T18:29:07.944377
#include <stdbool.h> #include <string.h> #include "webui.h" #include "vfs.h" // This example is used to verify redirect and fallback behavior for: // /, /sub, /sub/foo // in both storage modes: // 1) set_root_folder(...) // 2) set_file_handler(vfs) // // Server mode is the primary redirect test path because it ...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
src/civetweb/civetweb.h
null
null
null
null
null
null
C
2026-05-04T18:29:08.010844
// Disable All Warnings #ifdef _MSC_VER #pragma warning(push, 0) #pragma warning(disable: 4996) #elif defined(__clang__) #pragma clang system_header #elif defined(__GNUC__) #pragma GCC system_header #endif /* Copyright (c) 2013-2024 the Civetweb developers * Copyright (c) 2004-2013 Sergey Lyubka * * Permission is h...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
examples/C/virtual_file_system/vfs.h
null
null
null
null
null
null
C
2026-05-04T18:29:08.083659
#ifndef VIRTUAL_FILE_SYSTEM_H #define VIRTUAL_FILE_SYSTEM_H typedef struct { const char *path; const unsigned char *data; int length; } VirtualFile; static const unsigned char FILE_0[] = {0x3c,0x21,0x64,0x6f,0x63,0x74,0x79,0x70,0x65,0x20,0x68,0x74,0x6d,0x6c,0x3e,0x0d,0x0a,0x3c,0x68,0x74,0x6d,0x6c,0x3e,0x0...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
include/webui.h
null
null
null
null
null
null
C
2026-05-04T18:29:08.084457
/* WebUI Library https://webui.me https://github.com/webui-dev/webui Copyright (c) 2020-2026 Hassan Draga. Licensed under MIT License. All rights reserved. Canada. */ #ifndef _WEBUI_H #define _WEBUI_H #ifdef __cplusplus extern "C" { #endif #define WEBUI_VERSION "2.5.0-beta.4" // Max windows, servers a...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
examples/C/test_index_redirect/vfs.h
null
null
null
null
null
null
C
2026-05-04T18:29:08.103851
#ifndef VIRTUAL_FILE_SYSTEM_H #define VIRTUAL_FILE_SYSTEM_H typedef struct { const char *path; const unsigned char *data; int length; } VirtualFile; static const unsigned char FILE_0[] = {0x3c,0x21,0x64,0x6f,0x63,0x74,0x79,0x70,0x65,0x20,0x68,0x74,0x6d,0x6c,0x3e,0x0d,0x0a,0x3c,0x68,0x74,0x6d,0x6c,0x20,0x6...
webui-dev/webui
https://github.com/webui-dev/webui
null
null
null
null
4,104
null
null
mit
null
null
null
null
null
null
null
src/webview/EventToken.h
null
null
null
null
null
null
C
2026-05-04T18:29:09.025692
/* this ALWAYS GENERATED file contains the definitions for the interfaces */ /* File created by MIDL compiler version 8.01.0622 */ /* @@MIDL_FILE_HEADING( ) */ /* verify that the <rpcndr.h> version is high enough to compile this file*/ #ifndef __REQUIRED_RPCNDR_H_VERSION__ #define __REQUIRED_RPCNDR_H_VERSION__...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
include/deprecated_definitions.h
null
null
null
null
null
null
C
2026-05-04T18:29:11.470775
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
event_groups.c
null
null
null
null
null
null
C
2026-05-04T18:29:11.472098
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
include/StackMacros.h
null
null
null
null
null
null
C
2026-05-04T18:29:11.503981
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
croutine.c
null
null
null
null
null
null
C
2026-05-04T18:29:11.505929
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
include/atomic.h
null
null
null
null
null
null
C
2026-05-04T18:29:11.507063
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
include/croutine.h
null
null
null
null
null
null
C
2026-05-04T18:29:11.508428
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
examples/coverity/FreeRTOSConfig.h
null
null
null
null
null
null
C
2026-05-04T18:29:11.525226
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
examples/template_configuration/FreeRTOSConfig.h
null
null
null
null
null
null
C
2026-05-04T18:29:11.531470
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
examples/cmake_example/main.c
null
null
null
null
null
null
C
2026-05-04T18:29:11.549957
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
include/event_groups.h
null
null
null
null
null
null
C
2026-05-04T18:29:11.551674
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
include/message_buffer.h
null
null
null
null
null
null
C
2026-05-04T18:29:12.068141
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
include/list.h
null
null
null
null
null
null
C
2026-05-04T18:29:12.109574
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
include/newlib-freertos.h
null
null
null
null
null
null
C
2026-05-04T18:29:12.166228
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
include/mpu_syscall_numbers.h
null
null
null
null
null
null
C
2026-05-04T18:29:12.167445
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
include/mpu_prototypes.h
null
null
null
null
null
null
C
2026-05-04T18:29:12.169776
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
include/queue.h
null
null
null
null
null
null
C
2026-05-04T18:29:12.181613
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
include/mpu_wrappers.h
null
null
null
null
null
null
C
2026-05-04T18:29:12.193698
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
include/portable.h
null
null
null
null
null
null
C
2026-05-04T18:29:12.197727
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
include/picolibc-freertos.h
null
null
null
null
null
null
C
2026-05-04T18:29:12.199344
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
include/projdefs.h
null
null
null
null
null
null
C
2026-05-04T18:29:12.222609
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
include/semphr.h
null
null
null
null
null
null
C
2026-05-04T18:29:12.700236
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
include/stack_macros.h
null
null
null
null
null
null
C
2026-05-04T18:29:12.732060
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
portable/ARMv8M/non_secure/portable/GCC/ARM_CM23_NTZ/portmacro.h
null
null
null
null
null
null
C
2026-05-04T18:29:12.824164
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * Copyright 2026 Arm Limited and/or its affiliates <open-source-office@arm.com> * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
include/stream_buffer.h
null
null
null
null
null
null
C
2026-05-04T18:29:12.825928
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
portable/ARMv8M/non_secure/portable/GCC/ARM_CM23/portasm.c
null
null
null
null
null
null
C
2026-05-04T18:29:12.831110
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
list.c
null
null
null
null
null
null
C
2026-05-04T18:29:12.844354
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
portable/ARMv8M/non_secure/portable/GCC/ARM_CM23_NTZ/portasm.c
null
null
null
null
null
null
C
2026-05-04T18:29:12.850727
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...
FreeRTOS/FreeRTOS-Kernel
https://github.com/FreeRTOS/FreeRTOS-Kernel
null
null
null
null
4,092
null
null
mit
null
null
null
null
null
null
null
include/timers.h
null
null
null
null
null
null
C
2026-05-04T18:29:12.863018
/* * FreeRTOS Kernel <DEVELOPMENT BRANCH> * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal...