Skip to content

Instantly share code, notes, and snippets.

@mattpodwysocki
Created September 30, 2016 21:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattpodwysocki/5d3d63a0fb76a1a40d0b6fec001962fb to your computer and use it in GitHub Desktop.
Save mattpodwysocki/5d3d63a0fb76a1a40d0b6fec001962fb to your computer and use it in GitHub Desktop.
#include "cssLayout.h"
#include "stdafx.h"
int main()
{
CSSNode* node = CSSNodeNew();
CSSNodeInit(node);
wprintf(L"Is Dirty %s", CSSNodeIsDirty(node) ? L"true" : L"false"); // false
CSSNodeFree(node); // true
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment