var ROW_SPACER='\u00A0\u00A0\u00A0\u00A0';updateRequired=false;queueProcessing=false;currentSearchId=0;textInput=null;rowCount=35;menuTable=null;menuTableRows=new Array();previousQuery=null;var targetDoc=null;var targetWin=null;function setupSearchField(win)
{targetWin=win;targetDoc=win.document;textInput=targetDoc.getElementById('gaSearch');textInput.onkeydown=keydown;textInput.onkeyup=keyup;textInput.onfocus=processFocus;textInput.onblur=processBlur;try
{}catch(e)
{}menuTable=targetDoc.createElement('table');menuTable.className='gaMenu';menuTable.style.display='none';menuTable.cellSpacing=0;menuTable.cellPadding=0;menuTable.border=0;menuTable.style.position='absolute';menuTable.style.zIndex=100;for(var i=0;i<rowCount;i++)
{var row=menuTable.insertRow(i);var td=targetDoc.createElement('td');td.align='left';td.idx=i;td.onmousedown=goToResource;row.appendChild(td);td.appendChild(targetDoc.createTextNode('\u00A0'));menuTableRows[i]=td;}targetDoc.body.appendChild(menuTable);}function gotapi_prepareData(data)
{for(var i=0;i<data.length-1;i++)
{var offset=data[i].p;data[i].p=data[i-offset];}}function removeAllChilds(argNode)
{while(argNode.firstChild)
{argNode.removeChild(argNode.firstChild);}}function processFocus(evt)
{var value=textInput.value;if(value=='')
{setMenuVisible(false);return;}if(updateRequired) {update();}setMenuVisible(true);}function processBlur(evt)
{setMenuVisible(false);}function Module(id,path,title,url,popup)
{this.id=id;this.path=path;this.title=title;this.data=null;this.url=url;this.popup=popup;}function keyup(evt)
{var key=evt?evt.keyCode:targetWin.event.keyCode;if(key !=13 && key !=255 && key !=40 && key !=38)
{update();return false;}}function keydown(evt)
{var key=evt?evt.keyCode:targetWin.event.keyCode;if(key==13)
{showRow(selectedRow,false);var isNetscape=navigator.appName.toLowerCase().indexOf('netscape') >=0;if(isNetscape)
{if (evt.preventDefault) evt.preventDefault();if (evt.returnValue) evt.returnValue=false;if (evt.stopPropagation) evt.stopPropagation();}return false;}else if(key==40)
{selectRow(selectedRow+1,+1);setMenuVisible(true);}else if(key==38)
{selectRow(selectedRow-1,-1);setMenuVisible(true);}else if(key !=255)
{setMenuVisible(true);return true;}return false;}function selectRow(argRow,argDirection)
{var row=argRow;for(;;)
{if(row >=rowCount||row < 0||menuTableRows[row].style.display=='none')
{return;}if(menuTableRows[row].n)
{break;}row+=argDirection;}if(selectedRow >=0)
{var activeRow=menuTableRows[selectedRow];activeRow.className='gaRegularRow';}selectedRow=row;var activeRow=menuTableRows[selectedRow];activeRow.className='gaSelectedRow';}function search(argSearchId)
{if(currentSearchId !=argSearchId)
{return;}if(updateRequired)
previousQuery=null;var value=textInput.value;if(value=='')
{setMenuVisible(false);return;}if(value==previousQuery)
{return;}var extendPrevious=value.indexOf(previousQuery)==0;previousQuery=value;var keywords=value.split(/[ \t\.=<>\/\\\*_\(\):]+/);var res=new Array();for(var i=0;i<keywords.length;i++)
{res.push(new RegExp(keywords[i],"i"));}var startTime=new Date();var result=searchModules(argSearchId,res,keywords[0].toLowerCase());if(!result)
{return;}displayedRows=result;var endTime=new Date();var queryExecutionTime=endTime.getTime()-startTime.getTime();var startTime=new Date();var proceed=showResults(argSearchId,displayedRows);var endTime=new Date();var resultsRenderingTime=endTime.getTime()-startTime.getTime();if(! proceed)
{return;}selectedRow=-1;setMenuVisible(true);selectRow(0,+1);addStats('s',value+':'+queryExecutionTime+":"+resultsRenderingTime);}function searchModules(argSearchId,argRegList,argPriorityKey)
{var results=new Array();var klen=argRegList.length;for(var m=0;m<allModules.length;m++)
{var module=allModules[m];var moduleResults=new Array();var exactMatchEnd=0;var startsWithEnd=0;results.push(moduleResults);if(!module.data||!module.active) continue;var dx=module.data;if(! dx)
{continue;}var len=dx.length-1;for(var i=0;i<len;i++)
{if(exactMatchEnd+startsWithEnd > rowCount)
{break;}if(currentSearchId !=argSearchId)
{return null;}var item=dx[i];var n=dx[i].n;var matched=false;var re=null;for(var k=0;k<klen;k++)
{re=argRegList[k];if(re.test(n))
{matched=true;break;}}if(!matched)
{continue;}if(klen==1||matchItemParents(item,argRegList,re))
{if(n)
{var ln=n.toLowerCase();if(ln==argPriorityKey)
{moduleResults.splice(exactMatchEnd++,0,item);}else if(ln.indexOf(argPriorityKey)==0)
{moduleResults.splice(exactMatchEnd+startsWithEnd++,0,item);}else
{moduleResults.push(item);}}else
{moduleResults.push(item);}}}}return results;}function matchItemParents(argItem,argRes,argExcludingRe)
{var klen=argRes.length;var failed=false;for(var k=0;k<klen;k++)
{var re=argRes[k];if(re==argExcludingRe)
{continue;}var matched=false;var current=argItem;while(current)
{if(re.test(current.n))
{matched=true;break;}current=current.p;}if(!matched)
{failed=true;break;}}return !failed;}function showResults(argSearchId,argResults)
{var nonemptyModuleCount=0;for(var i=0;i<argResults.length;i++)
{if(argResults[i].length > 0) nonemptyModuleCount++;}var row=0;if(nonemptyModuleCount > 0)
{var fairCount=(rowCount - nonemptyModuleCount*2)/ nonemptyModuleCount;fairCount=Math.floor(fairCount);var leftoverCount=0;for(var i=0;i<argResults.length;i++)
{var r=argResults[i];var module=allModules[i];if(module.active && module.data && r.length > 0 && r.length < fairCount)
{leftoverCount+=fairCount - r.length;}}for(var m=0;m<allModules.length;m++)
{var module=allModules[m];if(!module.data||!module.active) continue;var moduleResults=argResults[m];if(! module.data||moduleResults.length <=0)
{continue;}if(row+1 >=rowCount) break;updateResultRow(row++,module.title,'gaHeaderRow',null);var i=0;for(;i<moduleResults.length;i++)
{if(i >=fairCount)
{if(leftoverCount==0) break;leftoverCount--;}var n=moduleResults[i];updateResultRow(row++,getResourceTitle(n),'gaRegularRow',n);}if(i < moduleResults.length)
{updateResultRow(row++,ROW_SPACER+'...','gaFooterRow',null);}}}if(row==0)
{updateResultRow(row++,'... No Matches Found ...','gaHeaderRow',null);addStats('s','-');}while(row < rowCount)
{var tableRow=menuTableRows[row++];tableRow.style.display='none';}return true;}function updateResultRow(argRowId,argTitle,argStyle,argNode)
{var row=menuTableRows[argRowId];row.firstChild.nodeValue=argTitle;row.className=argStyle;row.n=argNode;row.style.display='';}function getResourceTitle(argItem)
{var result='';var item=argItem;while(item && (item.p||item==argItem))
{name=getResourceLabel(item);result=name+(result==''?'':' \u00A0\u2192\u00A0 '+result);item=item.p;}return ROW_SPACER+result;}function getResourceLabel(argItem)
{var name=argItem.n;var type=argItem.t;if(type=='T') name='<'+name+' ... >';else if(type=='M') name=name+' (...)';else if(type=='C') name='class '+name;else if(type=='P');else if(type=='I') name='interface '+name;else if(type=='O');else if(type=='D') name=/*'\u00A7\u00A7 '+*/name;else if(type=='S') name='{'+name+':... }';else if(type=='V');return name;}function setMenuVisible(argVisible)
{if(queueProcessing) return;var visibleNow=menuTable.style.display=='';if(visibleNow==argVisible)
{return;}if(argVisible)
{showPopupNode(menuTable,textInput,3,0);}else
{menuTable.style.display='none';}if(window.opera)
{siteFrame.style.display=argVisible?'none':'';}}function showPopupNode(showNode,relativeNode,offsetX,offsetY)
{var nodeX=relativeNode.offsetLeft;var nodeY=relativeNode.offsetTop+relativeNode.offsetHeight;var node=relativeNode;while(node.offsetParent)
{node=node.offsetParent;nodeX+=node.offsetLeft;nodeY+=node.offsetTop;}showNode.style.left=(nodeX+offsetX)+'px';showNode.style.top=(nodeY+offsetY)+'px';showNode.style.display='';}function getResourceContext(argNode)
{var context=argNode.p
?getResourceContext(argNode.p)
:'';var c=argNode.c;if(c)
{c=uncompressValue(c,argNode);context=c.indexOf('http://')==0
?c:context+c;}return context;}function getResourceUrl(argNode)
{if(argNode.u||argNode.c)
{var ctx=getResourceContext(argNode);var u=argNode.u;if(! u)
{return ctx;}u=uncompressValue(u,argNode);return u.indexOf('http://')==0
?u
:ctx+u;}else
{return argNode.p?getResourceUrl(argNode.p):null;}}function uncompressValue(argValue,argNode)
{var idx=argValue.indexOf('`');if(idx < 0)
{return argValue;}var name=argNode.n;return argValue.substr(0,idx)+name+argValue.substr(idx+1);}function goToResource()
{showRow(this.idx,false)
}function showRow(argRow,argMenuVisible)
{if(argRow < 0)
{return;}setMenuVisible(argMenuVisible);var row=menuTableRows[argRow];showItem(row.n);}function update()
{if(queueProcessing) {if(textInput.value=='') {return;}updateWhenLoaded=true;var lbl=$('loading')
if(lbl) lbl.style.color='black';return;}++currentSearchId;setTimeout('search('+currentSearchId+')',1);}function showItem(argItem)
{var url=getResourceUrl(argItem);targetWin.location.href=url;}allModules=[new Module(0,gaMod,gaTitle,null,null)];function startModuleProcessing(name)
{setupSearchField(window);queueProcessing=true;}function finishModuleProcessing(name,data)
{gotapi_prepareData(data);allModules[0].data=data;allModules[0].active=true;queueProcessing=false;if(updateWhenLoaded) update();document.getElementById('gaWait').style.display='none';document.getElementById('gaInfo').style.display='';}function addStats(argType,argMsg)
{}function sendStats()
{}startModuleProcessing('module_dinkumc.js');var P = 'P';
var C = 'C';
var I = 'I';
var M = 'M';
var O = 'O';
var T = 'T';
var D = 'D';
var S = 'S';
var V = 'V';
var tmp = new Array(
{t:D,p:1},
{t:D,n:'Overviews',u:'#`',c:'http://www.dinkumware.com/manuals/',p:1},
{t:P,n:'C++ Library Overview',c:'?manual=compleat&page=lib_cpp.html',p:1},
{t:M,n:'Using C++ Library Headers',u:'#`',p:1},
{t:M,n:'C++ Library Conventions',u:'#`',p:2},
{t:M,n:'Iostreams Conventions',u:'#iostreams',p:3},
{t:M,n:'Program Startup and Termination',u:'#C++ `',p:4},
{t:M,n:'Exceptions',u:'#`',p:5},
{t:M,n:'_Raise',u:'#`',p:6},
{t:M,n:'_Throw',u:'#`',p:7},
{t:P,n:'C Library Overview',c:'?manual=compleat&page=lib_over.html',p:9},
{t:M,n:'Using Standard C Headers',u:'#`',p:1},
{t:M,n:'C Library Conventions',u:'#`',p:2},
{t:M,n:'Program Startup and Termination',u:'#C `',p:3},
{t:P,n:'Characters',c:'?manual=compleat&page=charset.html',p:13},
{t:M,n:'Character Sets',u:'#`',p:1},
{t:M,n:'Character Sets and Locales',u:'#`',p:2},
{t:M,n:'Escape Sequences',u:'#`',p:3},
{t:M,n:'Numeric Escape Sequences',u:'#`',p:4},
{t:M,n:'Trigraphs',u:'#`',p:5},
{t:M,n:'Multibyte Characters',u:'#`',p:6},
{t:M,n:'Wide-Character Encoding',u:'#`',p:7},
{t:P,n:'Files and Streams',c:'?manual=compleat&page=lib_file.html',p:21},
{t:M,n:'Text and Binary Streams',u:'#`',p:1},
{t:M,n:'Byte and Wide Streams',u:'#`',p:2},
{t:M,n:'Controlling Streams',u:'#`',p:3},
{t:M,n:'Stream States',u:'#`',p:4},
{t:P,n:'Formatted Output',c:'?manual=compleat&page=lib_prin.html',p:26},
{t:M,n:'Print Formats',u:'#`',p:1},
{t:M,n:'Print Functions',u:'#`',p:2},
{t:M,n:'Print Conversion Specifiers',u:'#`',p:3},
{t:P,n:'Formatted Input',c:'?manual=compleat&page=lib_scan.html',p:30},
{t:M,n:'Scan Formats',u:'#`',p:1},
{t:M,n:'Scan Functions',u:'#`',p:2},
{t:M,n:'Scan Conversion Specifiers',u:'#`',p:3},
{t:P,n:'Locale Definitions',u:'?manual=compleat&page=localedefs.html',p:34},
{t:P,n:'STL Conventions',c:'?manual=compleat&page=lib_stl.html',p:35},
{t:M,n:'Algorithm Conventions',u:'#`',p:1},
{t:M,n:'Iterator Conventions',u:'#`',p:2},
{t:P,n:'STL Containers',c:'?manual=compleat&page=lib_cont.html',p:38},
{t:M,n:'container',u:'#Containers',p:1},
{t:M,n:'Container',u:'#`',p:2},
{t:M,n:'operator==',u:'#`',p:3},
{t:M,n:'operator!=',u:'#`',p:4},
{t:M,n:'operator<',u:'#`',p:5},
{t:M,n:'operator>',u:'#`',p:6},
{t:M,n:'operator<=',u:'#`',p:7},
{t:M,n:'operator>=',u:'#`',p:8},
{t:M,n:'swap',u:'#`',p:9},
{t:P,n:'Thread Safety',u:'?manual=compleat&page=thread_safety.html',p:48},
{t:D,n:'Standard C Library',u:'#Standard%20C%20Library',c:'http://www.dinkumware.com/manuals/',p:50},
{t:P,n:'assert.h',c:'?manual=compleat&page=`tml',p:1},
{t:M,n:'assert',u:'#`',p:1},
{t:P,n:'complex.h',c:'?manual=compleat&page=complex2.html',p:3},
{t:M,n:'complex',u:'#`',p:1},
{t:M,n:'_Complex_I',u:'#`',p:2},
{t:M,n:'I',u:'#`',p:3},
{t:M,n:'imaginary',u:'#`',p:4},
{t:M,n:'_Imaginary_I',u:'#`',p:5},
{t:M,n:'CX_LIMITED_RANGE',u:'#`',p:6},
{t:M,n:'abs',u:'#`',p:7},
{t:M,n:'acos',u:'#`',p:8},
{t:M,n:'acosh',u:'#`',p:9},
{t:M,n:'arg',u:'#`',p:10},
{t:M,n:'asin',u:'#`',p:11},
{t:M,n:'asinh',u:'#`',p:12},
{t:M,n:'atan',u:'#`',p:13},
{t:M,n:'atanh',u:'#`',p:14},
{t:M,n:'cos',u:'#`',p:15},
{t:M,n:'cosh',u:'#`',p:16},
{t:M,n:'exp',u:'#`',p:17},
{t:M,n:'fabs',u:'#`',p:18},
{t:M,n:'imag',u:'#`',p:19},
{t:M,n:'log',u:'#`',p:20},
{t:M,n:'pow',u:'#`',p:21},
{t:M,n:'real',u:'#`',p:22},
{t:M,n:'sin',u:'#`',p:23},
{t:M,n:'sinh',u:'#`',p:24},
{t:M,n:'sqrt',u:'#`',p:25},
{t:M,n:'tan',u:'#`',p:26},
{t:M,n:'tanh',u:'#`',p:27},
{t:M,n:'cabs',u:'#`',p:28},
{t:M,n:'cacos',u:'#`',p:29},
{t:M,n:'cacosh',u:'#`',p:30},
{t:M,n:'carg',u:'#`',p:31},
{t:M,n:'casin',u:'#`',p:32},
{t:M,n:'casinh',u:'#`',p:33},
{t:M,n:'catan',u:'#`',p:34},
{t:M,n:'catanh',u:'#`',p:35},
{t:M,n:'ccos',u:'#`',p:36},
{t:M,n:'ccosh',u:'#`',p:37},
{t:M,n:'cexp',u:'#`',p:38},
{t:M,n:'cimag',u:'#`',p:39},
{t:M,n:'clog',u:'#`',p:40},
{t:M,n:'conj',u:'#`',p:41},
{t:M,n:'cpow',u:'#`',p:42},
{t:M,n:'cproj',u:'#`',p:43},
{t:M,n:'creal',u:'#`',p:44},
{t:M,n:'csin',u:'#`',p:45},
{t:M,n:'csinh',u:'#`',p:46},
{t:M,n:'csqrt',u:'#`',p:47},
{t:M,n:'ctan',u:'#`',p:48},
{t:M,n:'ctanh',u:'#`',p:49},
{t:M,n:'cabsf',u:'#`',p:50},
{t:M,n:'cacosf',u:'#`',p:51},
{t:M,n:'cacoshf',u:'#`',p:52},
{t:M,n:'cargf',u:'#`',p:53},
{t:M,n:'casinf',u:'#`',p:54},
{t:M,n:'casinhf',u:'#`',p:55},
{t:M,n:'catanf',u:'#`',p:56},
{t:M,n:'catanhf',u:'#`',p:57},
{t:M,n:'ccosf',u:'#`',p:58},
{t:M,n:'ccoshf',u:'#`',p:59},
{t:M,n:'cexpf',u:'#`',p:60},
{t:M,n:'cimagf',u:'#`',p:61},
{t:M,n:'clogf',u:'#`',p:62},
{t:M,n:'conjf',u:'#`',p:63},
{t:M,n:'cpowf',u:'#`',p:64},
{t:M,n:'cprojf',u:'#`',p:65},
{t:M,n:'crealf',u:'#`',p:66},
{t:M,n:'csinf',u:'#`',p:67},
{t:M,n:'csinhf',u:'#`',p:68},
{t:M,n:'csqrtf',u:'#`',p:69},
{t:M,n:'ctanf',u:'#`',p:70},
{t:M,n:'ctanhf',u:'#`',p:71},
{t:M,n:'cabsl',u:'#`',p:72},
{t:M,n:'cacosl',u:'#`',p:73},
{t:M,n:'cacoshl',u:'#`',p:74},
{t:M,n:'cargl',u:'#`',p:75},
{t:M,n:'casinl',u:'#`',p:76},
{t:M,n:'casinhl',u:'#`',p:77},
{t:M,n:'catanl',u:'#`',p:78},
{t:M,n:'catanhl',u:'#`',p:79},
{t:M,n:'ccosl',u:'#`',p:80},
{t:M,n:'ccoshl',u:'#`',p:81},
{t:M,n:'cexpl',u:'#`',p:82},
{t:M,n:'cimagl',u:'#`',p:83},
{t:M,n:'clogl',u:'#`',p:84},
{t:M,n:'conjl',u:'#`',p:85},
{t:M,n:'cpowl',u:'#`',p:86},
{t:M,n:'cprojl',u:'#`',p:87},
{t:M,n:'creall',u:'#`',p:88},
{t:M,n:'csinl',u:'#`',p:89},
{t:M,n:'csinhl',u:'#`',p:90},
{t:M,n:'csqrtl',u:'#`',p:91},
{t:M,n:'ctanl',u:'#`',p:92},
{t:M,n:'ctanhl',u:'#`',p:93},
{t:P,n:'ctype.h',c:'?manual=compleat&page=`tml',p:97},
{t:M,n:'isalnum',u:'#`',p:1},
{t:M,n:'isalpha',u:'#`',p:2},
{t:M,n:'isblank',u:'#`',p:3},
{t:M,n:'iscntrl',u:'#`',p:4},
{t:M,n:'isdigit',u:'#`',p:5},
{t:M,n:'isgraph',u:'#`',p:6},
{t:M,n:'islower',u:'#`',p:7},
{t:M,n:'isprint',u:'#`',p:8},
{t:M,n:'ispunct',u:'#`',p:9},
{t:M,n:'isspace',u:'#`',p:10},
{t:M,n:'isupper',u:'#`',p:11},
{t:M,n:'isxdigit',u:'#`',p:12},
{t:M,n:'tolower',u:'#`',p:13},
{t:M,n:'toupper',u:'#`',p:14},
{t:P,n:'errno.h',u:'?manual=compleat&page=`tml',p:112},
{t:P,n:'fenv.h',c:'?manual=compleat&page=`tml',p:113},
{t:M,n:'FE_ALL_EXCEPT',u:'#`',p:1},
{t:M,n:'FE_DFL_ENV',u:'#`',p:2},
{t:M,n:'FE_DIVBYZERO',u:'#`',p:3},
{t:M,n:'FE_DOWNWARD',u:'#`',p:4},
{t:M,n:'FE_INEXACT',u:'#`',p:5},
{t:M,n:'FE_INVALID',u:'#`',p:6},
{t:M,n:'FE_OVERFLOW',u:'#`',p:7},
{t:M,n:'FE_TONEAREST',u:'#`',p:8},
{t:M,n:'FE_TOWARDZERO',u:'#`',p:9},
{t:M,n:'FE_UNDERFLOW',u:'#`',p:10},
{t:M,n:'FE_UPWARD',u:'#`',p:11},
{t:M,n:'FENV_ACCESS',u:'#`',p:12},
{t:M,n:'feclearexcept',u:'#`',p:13},
{t:M,n:'fegetenv',u:'#`',p:14},
{t:M,n:'fegetexceptflag',u:'#`',p:15},
{t:M,n:'fegetround',u:'#`',p:16},
{t:M,n:'feholdexcept',u:'#`',p:17},
{t:M,n:'fenv_t',u:'#`',p:18},
{t:M,n:'feraiseexcept',u:'#`',p:19},
{t:M,n:'fesetenv',u:'#`',p:20},
{t:M,n:'fesetexceptflag',u:'#`',p:21},
{t:M,n:'fesetround',u:'#`',p:22},
{t:M,n:'fetestexcept',u:'#`',p:23},
{t:M,n:'feupdateenv',u:'#`',p:24},
{t:M,n:'fexcept_t',u:'#`',p:25},
{t:M,n:'fegettrapenable',u:'#`',p:26},
{t:M,n:'fesettrapenable',u:'#`',p:27},
{t:P,n:'float.h',u:'?manual=compleat&page=`tml',p:141},
{t:P,n:'inttypes.h',c:'?manual=compleat&page=`tml',p:142},
{t:M,n:'abs',u:'#`',p:1},
{t:M,n:'div',u:'#`',p:2},
{t:M,n:'imaxabs',u:'#`',p:3},
{t:M,n:'imaxdiv',u:'#`',p:4},
{t:M,n:'imaxdiv_t',u:'#`',p:5},
{t:M,n:'strtoimax',u:'#`',p:6},
{t:M,n:'strtoumax',u:'#`',p:7},
{t:M,n:'wcstoimax',u:'#`',p:8},
{t:M,n:'wcstoumax',u:'#`',p:9},
{t:M,n:'PRId8',u:'#`',p:10},
{t:M,n:'PRId16',u:'#`',p:11},
{t:M,n:'PRId32',u:'#`',p:12},
{t:M,n:'PRId64',u:'#`',p:13},
{t:M,n:'PRIdFAST8',u:'#`',p:14},
{t:M,n:'PRIdFAST16',u:'#`',p:15},
{t:M,n:'PRIdFAST32',u:'#`',p:16},
{t:M,n:'PRIdFAST64',u:'#`',p:17},
{t:M,n:'PRIdLEAST8',u:'#`',p:18},
{t:M,n:'PRIdLEAST16',u:'#`',p:19},
{t:M,n:'PRIdLEAST32',u:'#`',p:20},
{t:M,n:'PRIdLEAST64',u:'#`',p:21},
{t:M,n:'PRIdMAX',u:'#`',p:22},
{t:M,n:'PRIdPTR',u:'#`',p:23},
{t:M,n:'PRIi8',u:'#`',p:24},
{t:M,n:'PRIi16',u:'#`',p:25},
{t:M,n:'PRIi32',u:'#`',p:26},
{t:M,n:'PRIi64',u:'#`',p:27},
{t:M,n:'PRIiFAST8',u:'#`',p:28},
{t:M,n:'PRIiFAST16',u:'#`',p:29},
{t:M,n:'PRIiFAST32',u:'#`',p:30},
{t:M,n:'PRIiFAST64',u:'#`',p:31},
{t:M,n:'PRIiLEAST8',u:'#`',p:32},
{t:M,n:'PRIiLEAST16',u:'#`',p:33},
{t:M,n:'PRIiLEAST32',u:'#`',p:34},
{t:M,n:'PRIiLEAST64',u:'#`',p:35},
{t:M,n:'PRIiMAX',u:'#`',p:36},
{t:M,n:'PRIiPTR',u:'#`',p:37},
{t:M,n:'PRIo8',u:'#`',p:38},
{t:M,n:'PRIo16',u:'#`',p:39},
{t:M,n:'PRIo32',u:'#`',p:40},
{t:M,n:'PRIo64',u:'#`',p:41},
{t:M,n:'PRIoFAST8',u:'#`',p:42},
{t:M,n:'PRIoFAST16',u:'#`',p:43},
{t:M,n:'PRIoFAST32',u:'#`',p:44},
{t:M,n:'PRIoFAST64',u:'#`',p:45},
{t:M,n:'PRIoLEAST8',u:'#`',p:46},
{t:M,n:'PRIoLEAST16',u:'#`',p:47},
{t:M,n:'PRIoLEAST32',u:'#`',p:48},
{t:M,n:'PRIoLEAST64',u:'#`',p:49},
{t:M,n:'PRIoMAX',u:'#`',p:50},
{t:M,n:'PRIoPTR',u:'#`',p:51},
{t:M,n:'PRIu8',u:'#`',p:52},
{t:M,n:'PRIu16',u:'#`',p:53},
{t:M,n:'PRIu32',u:'#`',p:54},
{t:M,n:'PRIu64',u:'#`',p:55},
{t:M,n:'PRIuFAST8',u:'#`',p:56},
{t:M,n:'PRIuFAST16',u:'#`',p:57},
{t:M,n:'PRIuFAST32',u:'#`',p:58},
{t:M,n:'PRIuFAST64',u:'#`',p:59},
{t:M,n:'PRIuLEAST8',u:'#`',p:60},
{t:M,n:'PRIuLEAST16',u:'#`',p:61},
{t:M,n:'PRIuLEAST32',u:'#`',p:62},
{t:M,n:'PRIuLEAST64',u:'#`',p:63},
{t:M,n:'PRIuMAX',u:'#`',p:64},
{t:M,n:'PRIuPTR',u:'#`',p:65},
{t:M,n:'PRIx8',u:'#`',p:66},
{t:M,n:'PRIx16',u:'#`',p:67},
{t:M,n:'PRIx32',u:'#`',p:68},
{t:M,n:'PRIx64',u:'#`',p:69},
{t:M,n:'PRIxFAST8',u:'#`',p:70},
{t:M,n:'PRIxFAST16',u:'#`',p:71},
{t:M,n:'PRIxFAST32',u:'#`',p:72},
{t:M,n:'PRIxFAST64',u:'#`',p:73},
{t:M,n:'PRIxLEAST8',u:'#`',p:74},
{t:M,n:'PRIxLEAST16',u:'#`',p:75},
{t:M,n:'PRIxLEAST32',u:'#`',p:76},
{t:M,n:'PRIxLEAST64',u:'#`',p:77},
{t:M,n:'PRIxMAX',u:'#`',p:78},
{t:M,n:'PRIxPTR',u:'#`',p:79},
{t:M,n:'PRIX8',u:'#`',p:80},
{t:M,n:'PRIX16',u:'#`',p:81},
{t:M,n:'PRIX32',u:'#`',p:82},
{t:M,n:'PRIX64',u:'#`',p:83},
{t:M,n:'PRIXFAST8',u:'#`',p:84},
{t:M,n:'PRIXFAST16',u:'#`',p:85},
{t:M,n:'PRIXFAST32',u:'#`',p:86},
{t:M,n:'PRIXFAST64',u:'#`',p:87},
{t:M,n:'PRIXLEAST8',u:'#`',p:88},
{t:M,n:'PRIXLEAST16',u:'#`',p:89},
{t:M,n:'PRIXLEAST32',u:'#`',p:90},
{t:M,n:'PRIXLEAST64',u:'#`',p:91},
{t:M,n:'PRIXMAX',u:'#`',p:92},
{t:M,n:'PRIXPTR',u:'#`',p:93},
{t:M,n:'SCNd8',u:'#`',p:94},
{t:M,n:'SCNd16',u:'#`',p:95},
{t:M,n:'SCNd32',u:'#`',p:96},
{t:M,n:'SCNd64',u:'#`',p:97},
{t:M,n:'SCNdFAST8',u:'#`',p:98},
{t:M,n:'SCNdFAST16',u:'#`',p:99},
{t:M,n:'SCNdFAST32',u:'#`',p:100},
{t:M,n:'SCNdFAST64',u:'#`',p:101},
{t:M,n:'SCNdLEAST8',u:'#`',p:102},
{t:M,n:'SCNdLEAST16',u:'#`',p:103},
{t:M,n:'SCNdLEAST32',u:'#`',p:104},
{t:M,n:'SCNdLEAST64',u:'#`',p:105},
{t:M,n:'SCNdMAX',u:'#`',p:106},
{t:M,n:'SCNdPTR',u:'#`',p:107},
{t:M,n:'SCNi8',u:'#`',p:108},
{t:M,n:'SCNi16',u:'#`',p:109},
{t:M,n:'SCNi32',u:'#`',p:110},
{t:M,n:'SCNi64',u:'#`',p:111},
{t:M,n:'SCNiFAST8',u:'#`',p:112},
{t:M,n:'SCNiFAST16',u:'#`',p:113},
{t:M,n:'SCNiFAST32',u:'#`',p:114},
{t:M,n:'SCNiFAST64',u:'#`',p:115},
{t:M,n:'SCNiLEAST8',u:'#`',p:116},
{t:M,n:'SCNiLEAST16',u:'#`',p:117},
{t:M,n:'SCNiLEAST32',u:'#`',p:118},
{t:M,n:'SCNiLEAST64',u:'#`',p:119},
{t:M,n:'SCNiMAX',u:'#`',p:120},
{t:M,n:'SCNiPTR',u:'#`',p:121},
{t:M,n:'SCNo8',u:'#`',p:122},
{t:M,n:'SCNo16',u:'#`',p:123},
{t:M,n:'SCNo32',u:'#`',p:124},
{t:M,n:'SCNo64',u:'#`',p:125},
{t:M,n:'SCNoFAST8',u:'#`',p:126},
{t:M,n:'SCNoFAST16',u:'#`',p:127},
{t:M,n:'SCNoFAST32',u:'#`',p:128},
{t:M,n:'SCNoFAST64',u:'#`',p:129},
{t:M,n:'SCNoLEAST8',u:'#`',p:130},
{t:M,n:'SCNoLEAST16',u:'#`',p:131},
{t:M,n:'SCNoLEAST32',u:'#`',p:132},
{t:M,n:'SCNoLEAST64',u:'#`',p:133},
{t:M,n:'SCNoMAX',u:'#`',p:134},
{t:M,n:'SCNoPTR',u:'#`',p:135},
{t:M,n:'SCNu8',u:'#`',p:136},
{t:M,n:'SCNu16',u:'#`',p:137},
{t:M,n:'SCNu32',u:'#`',p:138},
{t:M,n:'SCNu64',u:'#`',p:139},
{t:M,n:'SCNuFAST8',u:'#`',p:140},
{t:M,n:'SCNuFAST16',u:'#`',p:141},
{t:M,n:'SCNuFAST32',u:'#`',p:142},
{t:M,n:'SCNuFAST64',u:'#`',p:143},
{t:M,n:'SCNuLEAST8',u:'#`',p:144},
{t:M,n:'SCNuLEAST16',u:'#`',p:145},
{t:M,n:'SCNuLEAST32',u:'#`',p:146},
{t:M,n:'SCNuLEAST64',u:'#`',p:147},
{t:M,n:'SCNuMAX',u:'#`',p:148},
{t:M,n:'SCNuPTR',u:'#`',p:149},
{t:M,n:'SCNx8',u:'#`',p:150},
{t:M,n:'SCNx16',u:'#`',p:151},
{t:M,n:'SCNx32',u:'#`',p:152},
{t:M,n:'SCNx64',u:'#`',p:153},
{t:M,n:'SCNxFAST8',u:'#`',p:154},
{t:M,n:'SCNxFAST16',u:'#`',p:155},
{t:M,n:'SCNxFAST32',u:'#`',p:156},
{t:M,n:'SCNxFAST64',u:'#`',p:157},
{t:M,n:'SCNxLEAST8',u:'#`',p:158},
{t:M,n:'SCNxLEAST16',u:'#`',p:159},
{t:M,n:'SCNxLEAST32',u:'#`',p:160},
{t:M,n:'SCNxLEAST64',u:'#`',p:161},
{t:M,n:'SCNxMAX',u:'#`',p:162},
{t:M,n:'SCNxPTR',u:'#`',p:163},
{t:P,n:'iohw.h',c:'?manual=compleat&page=`tml',p:306},
{t:M,n:'ioindex_t',u:'#`',p:1},
{t:M,n:'ioreg',u:'#`',p:2},
{t:M,n:'ioand',u:'#`',p:3},
{t:M,n:'ioandbuf',u:'#`',p:4},
{t:M,n:'ioandbufl',u:'#`',p:5},
{t:M,n:'ioandl',u:'#`',p:6},
{t:M,n:'iogroup_acquire',u:'#`',p:7},
{t:M,n:'iogroup_map',u:'#`',p:8},
{t:M,n:'iogroup_release',u:'#`',p:9},
{t:M,n:'ioor',u:'#`',p:10},
{t:M,n:'ioorbuf',u:'#`',p:11},
{t:M,n:'ioorbufl',u:'#`',p:12},
{t:M,n:'ioorl',u:'#`',p:13},
{t:M,n:'iord',u:'#`',p:14},
{t:M,n:'iordbuf',u:'#`',p:15},
{t:M,n:'iordbufl',u:'#`',p:16},
{t:M,n:'iordl',u:'#`',p:17},
{t:M,n:'iowr',u:'#`',p:18},
{t:M,n:'iowrbuf',u:'#`',p:19},
{t:M,n:'iowrbufl',u:'#`',p:20},
{t:M,n:'iowrl',u:'#`',p:21},
{t:M,n:'ioxor',u:'#`',p:22},
{t:M,n:'ioxorbuf',u:'#`',p:23},
{t:M,n:'ioxorbufl',u:'#`',p:24},
{t:M,n:'ioxorl',u:'#`',p:25},
{t:P,n:'iso646.h',u:'?manual=compleat&page=`tml',p:332},
{t:P,n:'limits.h',u:'?manual=compleat&page=`tml',p:333},
{t:P,n:'locale.h',c:'?manual=compleat&page=`tml',p:334},
{t:M,n:'locale category',u:'#`',p:1},
{t:M,n:'LC_ALL',u:'#`',p:2},
{t:P,n:'math.h',c:'?manual=compleat&page=`tml',p:337},
{t:M,n:'FP_FAST_FMA',u:'#`',p:1},
{t:M,n:'FP_FAST_FMAF',u:'#`',p:2},
{t:M,n:'FP_FAST_FMAL',u:'#`',p:3},
{t:M,n:'FP_ILOGB0',u:'#`',p:4},
{t:M,n:'FP_ILOGBNAN',u:'#`',p:5},
{t:M,n:'FP_INFINITE',u:'#`',p:6},
{t:M,n:'FP_NAN',u:'#`',p:7},
{t:M,n:'FP_NORMAL',u:'#`',p:8},
{t:M,n:'FP_SUBNORMAL',u:'#`',p:9},
{t:M,n:'FP_ZERO',u:'#`',p:10},
{t:M,n:'HUGE_VAL',u:'#`',p:11},
{t:M,n:'HUGE_VALF',u:'#`',p:12},
{t:M,n:'HUGE_VALL',u:'#`',p:13},
{t:M,n:'INFINITY',u:'#`',p:14},
{t:M,n:'MATH_ERRNO',u:'#`',p:15},
{t:M,n:'MATH_ERREXCEPT',u:'#`',p:16},
{t:M,n:'math_errhandling',u:'#`',p:17},
{t:M,n:'NAN',u:'#`',p:18},
{t:M,n:'FP_CONTRACT',u:'#`',p:19},
{t:M,n:'abs',u:'#`',p:20},
{t:M,n:'acos',u:'#`',p:21},
{t:M,n:'acosh',u:'#`',p:22},
{t:M,n:'asin',u:'#`',p:23},
{t:M,n:'asinh',u:'#`',p:24},
{t:M,n:'atan',u:'#`',p:25},
{t:M,n:'atanh',u:'#`',p:26},
{t:M,n:'atan2',u:'#`',p:27},
{t:M,n:'cbrt',u:'#`',p:28},
{t:M,n:'ceil',u:'#`',p:29},
{t:M,n:'copysign',u:'#`',p:30},
{t:M,n:'cos',u:'#`',p:31},
{t:M,n:'cosh',u:'#`',p:32},
{t:M,n:'double_t',u:'#`',p:33},
{t:M,n:'erf',u:'#`',p:34},
{t:M,n:'erfc',u:'#`',p:35},
{t:M,n:'exp',u:'#`',p:36},
{t:M,n:'expm1',u:'#`',p:37},
{t:M,n:'exp2',u:'#`',p:38},
{t:M,n:'fabs',u:'#`',p:39},
{t:M,n:'fdim',u:'#`',p:40},
{t:M,n:'float_t',u:'#`',p:41},
{t:M,n:'floor',u:'#`',p:42},
{t:M,n:'fma',u:'#`',p:43},
{t:M,n:'fmax',u:'#`',p:44},
{t:M,n:'fmin',u:'#`',p:45},
{t:M,n:'fmod',u:'#`',p:46},
{t:M,n:'fpclassify',u:'#`',p:47},
{t:M,n:'frexp',u:'#`',p:48},
{t:M,n:'hypot',u:'#`',p:49},
{t:M,n:'ilogb',u:'#`',p:50},
{t:M,n:'isfinite',u:'#`',p:51},
{t:M,n:'isgreater',u:'#`',p:52},
{t:M,n:'isgreaterequal',u:'#`',p:53},
{t:M,n:'isinf',u:'#`',p:54},
{t:M,n:'isless',u:'#`',p:55},
{t:M,n:'islessequal',u:'#`',p:56},
{t:M,n:'islessgreater',u:'#`',p:57},
{t:M,n:'isnan',u:'#`',p:58},
{t:M,n:'isnormal',u:'#`',p:59},
{t:M,n:'isunordered',u:'#`',p:60},
{t:M,n:'ldexp',u:'#`',p:61},
{t:M,n:'lgamma',u:'#`',p:62},
{t:M,n:'llrint',u:'#`',p:63},
{t:M,n:'llround',u:'#`',p:64},
{t:M,n:'log',u:'#`',p:65},
{t:M,n:'log10',u:'#`',p:66},
{t:M,n:'log1p',u:'#`',p:67},
{t:M,n:'log2',u:'#`',p:68},
{t:M,n:'logb',u:'#`',p:69},
{t:M,n:'lrint',u:'#`',p:70},
{t:M,n:'lround',u:'#`',p:71},
{t:M,n:'modf',u:'#`',p:72},
{t:M,n:'nan',u:'#`',p:73},
{t:M,n:'nearbyint',u:'#`',p:74},
{t:M,n:'nextafter',u:'#`',p:75},
{t:M,n:'nexttoward',u:'#`',p:76},
{t:M,n:'pow',u:'#`',p:77},
{t:M,n:'remainder',u:'#`',p:78},
{t:M,n:'remquo',u:'#`',p:79},
{t:M,n:'rint',u:'#`',p:80},
{t:M,n:'round',u:'#`',p:81},
{t:M,n:'scalbln',u:'#`',p:82},
{t:M,n:'scalbn',u:'#`',p:83},
{t:M,n:'signbit',u:'#`',p:84},
{t:M,n:'sin',u:'#`',p:85},
{t:M,n:'sinh',u:'#`',p:86},
{t:M,n:'sqrt',u:'#`',p:87},
{t:M,n:'tan',u:'#`',p:88},
{t:M,n:'tanh',u:'#`',p:89},
{t:M,n:'tgamma',u:'#`',p:90},
{t:M,n:'trunc',u:'#`',p:91},
{t:M,n:'acosf',u:'#`',p:92},
{t:M,n:'acoshf',u:'#`',p:93},
{t:M,n:'asinf',u:'#`',p:94},
{t:M,n:'asinhf',u:'#`',p:95},
{t:M,n:'atanf',u:'#`',p:96},
{t:M,n:'atanhf',u:'#`',p:97},
{t:M,n:'atan2f',u:'#`',p:98},
{t:M,n:'cbrtf',u:'#`',p:99},
{t:M,n:'ceilf',u:'#`',p:100},
{t:M,n:'copysignf',u:'#`',p:101},
{t:M,n:'cosf',u:'#`',p:102},
{t:M,n:'coshf',u:'#`',p:103},
{t:M,n:'erff',u:'#`',p:104},
{t:M,n:'erfcf',u:'#`',p:105},
{t:M,n:'expf',u:'#`',p:106},
{t:M,n:'exp2f',u:'#`',p:107},
{t:M,n:'expm1f',u:'#`',p:108},
{t:M,n:'fabsf',u:'#`',p:109},
{t:M,n:'fdimf',u:'#`',p:110},
{t:M,n:'floorf',u:'#`',p:111},
{t:M,n:'fmaf',u:'#`',p:112},
{t:M,n:'fmaxf',u:'#`',p:113},
{t:M,n:'fminf',u:'#`',p:114},
{t:M,n:'fmodf',u:'#`',p:115},
{t:M,n:'frexpf',u:'#`',p:116},
{t:M,n:'hypotf',u:'#`',p:117},
{t:M,n:'ilogbf',u:'#`',p:118},
{t:M,n:'ldexpf',u:'#`',p:119},
{t:M,n:'lgammaf',u:'#`',p:120},
{t:M,n:'llrintf',u:'#`',p:121},
{t:M,n:'llroundf',u:'#`',p:122},
{t:M,n:'logf',u:'#`',p:123},
{t:M,n:'log10f',u:'#`',p:124},
{t:M,n:'log1pf',u:'#`',p:125},
{t:M,n:'log2f',u:'#`',p:126},
{t:M,n:'logbf',u:'#`',p:127},
{t:M,n:'lrintf',u:'#`',p:128},
{t:M,n:'lroundf',u:'#`',p:129},
{t:M,n:'modff',u:'#`',p:130},
{t:M,n:'nanf',u:'#`',p:131},
{t:M,n:'nearbyintf',u:'#`',p:132},
{t:M,n:'nextafterf',u:'#`',p:133},
{t:M,n:'nexttowardf',u:'#`',p:134},
{t:M,n:'remainderf',u:'#`',p:135},
{t:M,n:'remquof',u:'#`',p:136},
{t:M,n:'rintf',u:'#`',p:137},
{t:M,n:'roundf',u:'#`',p:138},
{t:M,n:'scalblnf',u:'#`',p:139},
{t:M,n:'scalbnf',u:'#`',p:140},
{t:M,n:'sinf',u:'#`',p:141},
{t:M,n:'sinhf',u:'#`',p:142},
{t:M,n:'sqrtf',u:'#`',p:143},
{t:M,n:'tanf',u:'#`',p:144},
{t:M,n:'tanhf',u:'#`',p:145},
{t:M,n:'tgammaf',u:'#`',p:146},
{t:M,n:'truncf',u:'#`',p:147},
{t:M,n:'acosl',u:'#`',p:148},
{t:M,n:'acoshl',u:'#`',p:149},
{t:M,n:'asinl',u:'#`',p:150},
{t:M,n:'asinhl',u:'#`',p:151},
{t:M,n:'atanl',u:'#`',p:152},
{t:M,n:'atanhl',u:'#`',p:153},
{t:M,n:'atan2l',u:'#`',p:154},
{t:M,n:'cbrtl',u:'#`',p:155},
{t:M,n:'ceill',u:'#`',p:156},
{t:M,n:'copysignl',u:'#`',p:157},
{t:M,n:'cosl',u:'#`',p:158},
{t:M,n:'coshl',u:'#`',p:159},
{t:M,n:'erfl',u:'#`',p:160},
{t:M,n:'erfcl',u:'#`',p:161},
{t:M,n:'expl',u:'#`',p:162},
{t:M,n:'exp2l',u:'#`',p:163},
{t:M,n:'expm1l',u:'#`',p:164},
{t:M,n:'fabsl',u:'#`',p:165},
{t:M,n:'fdiml',u:'#`',p:166},
{t:M,n:'floorl',u:'#`',p:167},
{t:M,n:'fmal',u:'#`',p:168},
{t:M,n:'fmaxl',u:'#`',p:169},
{t:M,n:'fminl',u:'#`',p:170},
{t:M,n:'fmodl',u:'#`',p:171},
{t:M,n:'frexpl',u:'#`',p:172},
{t:M,n:'hypotl',u:'#`',p:173},
{t:M,n:'ilogbl',u:'#`',p:174},
{t:M,n:'ldexpl',u:'#`',p:175},
{t:M,n:'lgammal',u:'#`',p:176},
{t:M,n:'llrintl',u:'#`',p:177},
{t:M,n:'llroundl',u:'#`',p:178},
{t:M,n:'logl',u:'#`',p:179},
{t:M,n:'log10l',u:'#`',p:180},
{t:M,n:'log1pl',u:'#`',p:181},
{t:M,n:'log2l',u:'#`',p:182},
{t:M,n:'logbl',u:'#`',p:183},
{t:M,n:'lrintl',u:'#`',p:184},
{t:M,n:'lroundl',u:'#`',p:185},
{t:M,n:'modfl',u:'#`',p:186},
{t:M,n:'nanl',u:'#`',p:187},
{t:M,n:'nearbyintl',u:'#`',p:188},
{t:M,n:'nextafterl',u:'#`',p:189},
{t:M,n:'nexttowardl',u:'#`',p:190},
{t:M,n:'remainderl',u:'#`',p:191},
{t:M,n:'remquol',u:'#`',p:192},
{t:M,n:'rintl',u:'#`',p:193},
{t:M,n:'roundl',u:'#`',p:194},
{t:M,n:'scalblnl',u:'#`',p:195},
{t:M,n:'scalbnl',u:'#`',p:196},
{t:M,n:'sinl',u:'#`',p:197},
{t:M,n:'sinhl',u:'#`',p:198},
{t:M,n:'sqrtl',u:'#`',p:199},
{t:M,n:'tanl',u:'#`',p:200},
{t:M,n:'tanhl',u:'#`',p:201},
{t:M,n:'tgammal',u:'#`',p:202},
{t:M,n:'truncl',u:'#`',p:203},
{t:M,n:'assoc_laguerre',u:'#`',p:204},
{t:M,n:'assoc_legendre',u:'#`',p:205},
{t:M,n:'beta',u:'#`',p:206},
{t:M,n:'comp_ellint_1',u:'#`',p:207},
{t:M,n:'comp_ellint_2',u:'#`',p:208},
{t:M,n:'comp_ellint_3',u:'#`',p:209},
{t:M,n:'cyl_bessel_i',u:'#`',p:210},
{t:M,n:'cyl_bessel_j',u:'#`',p:211},
{t:M,n:'cyl_bessel_k',u:'#`',p:212},
{t:M,n:'cyl_neumann',u:'#`',p:213},
{t:M,n:'ellint_1',u:'#`',p:214},
{t:M,n:'ellint_2',u:'#`',p:215},
{t:M,n:'ellint_3',u:'#`',p:216},
{t:M,n:'expint',u:'#`',p:217},
{t:M,n:'hermite',u:'#`',p:218},
{t:M,n:'laguerre',u:'#`',p:219},
{t:M,n:'legendre',u:'#`',p:220},
{t:M,n:'riemann_zeta',u:'#`',p:221},
{t:M,n:'sph_bessel',u:'#`',p:222},
{t:M,n:'sph_legendre',u:'#`',p:223},
{t:M,n:'sph_neumann',u:'#`',p:224},
{t:M,n:'assoc_laguerref',u:'#`',p:225},
{t:M,n:'assoc_legendref',u:'#`',p:226},
{t:M,n:'betaf',u:'#`',p:227},
{t:M,n:'comp_ellint_1f',u:'#`',p:228},
{t:M,n:'comp_ellint_2f',u:'#`',p:229},
{t:M,n:'comp_ellint_3f',u:'#`',p:230},
{t:M,n:'cyl_bessel_if',u:'#`',p:231},
{t:M,n:'cyl_bessel_jf',u:'#`',p:232},
{t:M,n:'cyl_bessel_kf',u:'#`',p:233},
{t:M,n:'cyl_neumannf',u:'#`',p:234},
{t:M,n:'ellint_1f',u:'#`',p:235},
{t:M,n:'ellint_2f',u:'#`',p:236},
{t:M,n:'ellint_3f',u:'#`',p:237},
{t:M,n:'expintf',u:'#`',p:238},
{t:M,n:'hermitef',u:'#`',p:239},
{t:M,n:'laguerref',u:'#`',p:240},
{t:M,n:'legendref',u:'#`',p:241},
{t:M,n:'riemann_zetaf',u:'#`',p:242},
{t:M,n:'sph_besself',u:'#`',p:243},
{t:M,n:'sph_legendref',u:'#`',p:244},
{t:M,n:'sph_neumannf',u:'#`',p:245},
{t:M,n:'assoc_laguerrel',u:'#`',p:246},
{t:M,n:'assoc_legendrel',u:'#`',p:247},
{t:M,n:'betal',u:'#`',p:248},
{t:M,n:'comp_ellint_1l',u:'#`',p:249},
{t:M,n:'comp_ellint_2l',u:'#`',p:250},
{t:M,n:'comp_ellint_3l',u:'#`',p:251},
{t:M,n:'cyl_bessel_il',u:'#`',p:252},
{t:M,n:'cyl_bessel_jl',u:'#`',p:253},
{t:M,n:'cyl_bessel_kl',u:'#`',p:254},
{t:M,n:'cyl_neumannl',u:'#`',p:255},
{t:M,n:'ellint_1l',u:'#`',p:256},
{t:M,n:'ellint_2l',u:'#`',p:257},
{t:M,n:'ellint_3l',u:'#`',p:258},
{t:M,n:'expintl',u:'#`',p:259},
{t:M,n:'hermitel',u:'#`',p:260},
{t:M,n:'laguerrel',u:'#`',p:261},
{t:M,n:'legendrel',u:'#`',p:262},
{t:M,n:'riemann_zetal',u:'#`',p:263},
{t:M,n:'sph_bessell',u:'#`',p:264},
{t:M,n:'sph_legendrel',u:'#`',p:265},
{t:M,n:'sph_neumannl',u:'#`',p:266},
{t:P,n:'setjmp.h',u:'?manual=compleat&page=`tml',p:604},
{t:P,n:'signal.h',c:'?manual=compleat&page=`tml',p:605},
{t:M,n:'signal handlers',u:'#signal handler',p:1},
{t:P,n:'stdarg.h',u:'?manual=compleat&page=`tml',p:607},
{t:P,n:'stdbool.h',u:'?manual=compleat&page=`tml',p:608},
{t:P,n:'stddef.h',u:'?manual=compleat&page=`tml',p:609},
{t:P,n:'stdfix.h',c:'?manual=compleat&page=`tml',p:610},
{t:M,n:'accum',u:'#`',p:1},
{t:M,n:'fract',u:'#`',p:2},
{t:M,n:'sat',u:'#`',p:3},
{t:M,n:'ACCUM_EPSILON',u:'#`',p:4},
{t:M,n:'ACCUM_FBIT',u:'#`',p:5},
{t:M,n:'ACCUM_IBIT',u:'#`',p:6},
{t:M,n:'ACCUM_MAX',u:'#`',p:7},
{t:M,n:'ACCUM_MIN',u:'#`',p:8},
{t:M,n:'FRACT_EPSILON',u:'#`',p:9},
{t:M,n:'FRACT_FBIT',u:'#`',p:10},
{t:M,n:'FRACT_MAX',u:'#`',p:11},
{t:M,n:'FRACT_MIN',u:'#`',p:12},
{t:M,n:'LACCUM_EPSILON',u:'#`',p:13},
{t:M,n:'LACCUM_FBIT',u:'#`',p:14},
{t:M,n:'LACCUM_IBIT',u:'#`',p:15},
{t:M,n:'LACCUM_MAX',u:'#`',p:16},
{t:M,n:'LACCUM_MIN',u:'#`',p:17},
{t:M,n:'LFRACT_EPSILON',u:'#`',p:18},
{t:M,n:'LFRACT_FBIT',u:'#`',p:19},
{t:M,n:'LFRACT_MAX',u:'#`',p:20},
{t:M,n:'LFRACT_MIN',u:'#`',p:21},
{t:M,n:'SACCUM_EPSILON',u:'#`',p:22},
{t:M,n:'SACCUM_FBIT',u:'#`',p:23},
{t:M,n:'SACCUM_IBIT',u:'#`',p:24},
{t:M,n:'SACCUM_MAX',u:'#`',p:25},
{t:M,n:'SACCUM_MIN',u:'#`',p:26},
{t:M,n:'SFRACT_EPSILON',u:'#`',p:27},
{t:M,n:'SFRACT_FBIT',u:'#`',p:28},
{t:M,n:'SFRACT_MAX',u:'#`',p:29},
{t:M,n:'SFRACT_MIN',u:'#`',p:30},
{t:M,n:'UACCUM_EPSILON',u:'#`',p:31},
{t:M,n:'UACCUM_FBIT',u:'#`',p:32},
{t:M,n:'UACCUM_IBIT',u:'#`',p:33},
{t:M,n:'UACCUM_MAX',u:'#`',p:34},
{t:M,n:'UFRACT_EPSILON',u:'#`',p:35},
{t:M,n:'UFRACT_FBIT',u:'#`',p:36},
{t:M,n:'UFRACT_MAX',u:'#`',p:37},
{t:M,n:'ULACCUM_EPSILON',u:'#`',p:38},
{t:M,n:'ULACCUM_FBIT',u:'#`',p:39},
{t:M,n:'ULACCUM_IBIT',u:'#`',p:40},
{t:M,n:'ULACCUM_MAX',u:'#`',p:41},
{t:M,n:'ULFRACT_EPSILON',u:'#`',p:42},
{t:M,n:'ULFRACT_FBIT',u:'#`',p:43},
{t:M,n:'ULFRACT_MAX',u:'#`',p:44},
{t:M,n:'USACCUM_EPSILON',u:'#`',p:45},
{t:M,n:'USACCUM_FBIT',u:'#`',p:46},
{t:M,n:'USACCUM_IBIT',u:'#`',p:47},
{t:M,n:'USACCUM_MAX',u:'#`',p:48},
{t:M,n:'USFRACT_EPSILON',u:'#`',p:49},
{t:M,n:'USFRACT_FBIT',u:'#`',p:50},
{t:M,n:'USFRACT_MAX',u:'#`',p:51},
{t:M,n:'int_hk_t',u:'#`',p:52},
{t:M,n:'int_hr_t',u:'#`',p:53},
{t:M,n:'int_k_t',u:'#`',p:54},
{t:M,n:'int_lk_t',u:'#`',p:55},
{t:M,n:'int_lr_t',u:'#`',p:56},
{t:M,n:'int_r_t',u:'#`',p:57},
{t:M,n:'uint_uhk_t',u:'#`',p:58},
{t:M,n:'uint_uhr_t',u:'#`',p:59},
{t:M,n:'uint_uk_t',u:'#`',p:60},
{t:M,n:'uint_ulk_t',u:'#`',p:61},
{t:M,n:'uint_ulr_t',u:'#`',p:62},
{t:M,n:'uint_ur_t',u:'#`',p:63},
{t:M,n:'abshk',u:'#`',p:64},
{t:M,n:'abshr',u:'#`',p:65},
{t:M,n:'absk',u:'#`',p:66},
{t:M,n:'abslk',u:'#`',p:67},
{t:M,n:'abslr',u:'#`',p:68},
{t:M,n:'absr',u:'#`',p:69},
{t:M,n:'bitshk',u:'#`',p:70},
{t:M,n:'bitshr',u:'#`',p:71},
{t:M,n:'bitsk',u:'#`',p:72},
{t:M,n:'bitslk',u:'#`',p:73},
{t:M,n:'bitslr',u:'#`',p:74},
{t:M,n:'bitsr',u:'#`',p:75},
{t:M,n:'bitsuhk',u:'#`',p:76},
{t:M,n:'bitsuhr',u:'#`',p:77},
{t:M,n:'bitsuk',u:'#`',p:78},
{t:M,n:'bitsulk',u:'#`',p:79},
{t:M,n:'bitsulr',u:'#`',p:80},
{t:M,n:'bitsur',u:'#`',p:81},
{t:M,n:'countlshk',u:'#`',p:82},
{t:M,n:'countlshr',u:'#`',p:83},
{t:M,n:'countlsk',u:'#`',p:84},
{t:M,n:'countlslk',u:'#`',p:85},
{t:M,n:'countlslr',u:'#`',p:86},
{t:M,n:'countlsr',u:'#`',p:87},
{t:M,n:'countlsuhk',u:'#`',p:88},
{t:M,n:'countlsuhr',u:'#`',p:89},
{t:M,n:'countlsuk',u:'#`',p:90},
{t:M,n:'countlsulk',u:'#`',p:91},
{t:M,n:'countlsulr',u:'#`',p:92},
{t:M,n:'countlsur',u:'#`',p:93},
{t:M,n:'divik',u:'#`',p:94},
{t:M,n:'divilk',u:'#`',p:95},
{t:M,n:'divilr',u:'#`',p:96},
{t:M,n:'divir',u:'#`',p:97},
{t:M,n:'diviuk',u:'#`',p:98},
{t:M,n:'diviulk',u:'#`',p:99},
{t:M,n:'diviulr',u:'#`',p:100},
{t:M,n:'diviur',u:'#`',p:101},
{t:M,n:'hkbits',u:'#`',p:102},
{t:M,n:'hrbits',u:'#`',p:103},
{t:M,n:'idivk',u:'#`',p:104},
{t:M,n:'idivlk',u:'#`',p:105},
{t:M,n:'idivlr',u:'#`',p:106},
{t:M,n:'idivr',u:'#`',p:107},
{t:M,n:'idivuk',u:'#`',p:108},
{t:M,n:'idivulk',u:'#`',p:109},
{t:M,n:'idivulr',u:'#`',p:110},
{t:M,n:'idivur',u:'#`',p:111},
{t:M,n:'kbits',u:'#`',p:112},
{t:M,n:'kdivi',u:'#`',p:113},
{t:M,n:'lkbits',u:'#`',p:114},
{t:M,n:'lkdivi',u:'#`',p:115},
{t:M,n:'lrbits',u:'#`',p:116},
{t:M,n:'lrdivi',u:'#`',p:117},
{t:M,n:'mulik',u:'#`',p:118},
{t:M,n:'mulilk',u:'#`',p:119},
{t:M,n:'mulilr',u:'#`',p:120},
{t:M,n:'mulir',u:'#`',p:121},
{t:M,n:'muliuk',u:'#`',p:122},
{t:M,n:'muliulk',u:'#`',p:123},
{t:M,n:'muliulr',u:'#`',p:124},
{t:M,n:'muliur',u:'#`',p:125},
{t:M,n:'rbits',u:'#`',p:126},
{t:M,n:'rdivi',u:'#`',p:127},
{t:M,n:'roundhk',u:'#`',p:128},
{t:M,n:'roundhr',u:'#`',p:129},
{t:M,n:'roundk',u:'#`',p:130},
{t:M,n:'roundlk',u:'#`',p:131},
{t:M,n:'roundlr',u:'#`',p:132},
{t:M,n:'roundr',u:'#`',p:133},
{t:M,n:'rounduhk',u:'#`',p:134},
{t:M,n:'rounduhr',u:'#`',p:135},
{t:M,n:'rounduk',u:'#`',p:136},
{t:M,n:'roundulk',u:'#`',p:137},
{t:M,n:'roundulr',u:'#`',p:138},
{t:M,n:'roundur',u:'#`',p:139},
{t:M,n:'strtofxhk',u:'#`',p:140},
{t:M,n:'strtofxhr',u:'#`',p:141},
{t:M,n:'strtofxk',u:'#`',p:142},
{t:M,n:'strtofxlk',u:'#`',p:143},
{t:M,n:'strtofxlr',u:'#`',p:144},
{t:M,n:'strtofxr',u:'#`',p:145},
{t:M,n:'strtofxuhk',u:'#`',p:146},
{t:M,n:'strtofxuhr',u:'#`',p:147},
{t:M,n:'strtofxuk',u:'#`',p:148},
{t:M,n:'strtofxulk',u:'#`',p:149},
{t:M,n:'strtofxulr',u:'#`',p:150},
{t:M,n:'strtofxur',u:'#`',p:151},
{t:M,n:'uhkbits',u:'#`',p:152},
{t:M,n:'uhrbits',u:'#`',p:153},
{t:M,n:'ukbits',u:'#`',p:154},
{t:M,n:'ukdivi',u:'#`',p:155},
{t:M,n:'ulkbits',u:'#`',p:156},
{t:M,n:'ulkdivi',u:'#`',p:157},
{t:M,n:'ulrbits',u:'#`',p:158},
{t:M,n:'ulrdivi',u:'#`',p:159},
{t:M,n:'urbits',u:'#`',p:160},
{t:M,n:'urdivi',u:'#`',p:161},
{t:M,n:'absfx',u:'#`',p:162},
{t:M,n:'countlsfx',u:'#`',p:163},
{t:M,n:'roundfx',u:'#`',p:164},
{t:P,n:'stdint.h',c:'?manual=compleat&page=`tml',p:775},
{t:M,n:'int8_t',u:'#`',p:1},
{t:M,n:'int16_t',u:'#`',p:2},
{t:M,n:'int32_t',u:'#`',p:3},
{t:M,n:'int64_t',u:'#`',p:4},
{t:M,n:'int_fast8_t',u:'#`',p:5},
{t:M,n:'int_fast16_t',u:'#`',p:6},
{t:M,n:'int_fast32_t',u:'#`',p:7},
{t:M,n:'int_fast64_t',u:'#`',p:8},
{t:M,n:'int_least8_t',u:'#`',p:9},
{t:M,n:'int_least16_t',u:'#`',p:10},
{t:M,n:'int_least32_t',u:'#`',p:11},
{t:M,n:'int_least64_t',u:'#`',p:12},
{t:M,n:'uint8_t',u:'#`',p:13},
{t:M,n:'uint16_t',u:'#`',p:14},
{t:M,n:'uint32_t',u:'#`',p:15},
{t:M,n:'uint64_t',u:'#`',p:16},
{t:M,n:'uint_fast8_t',u:'#`',p:17},
{t:M,n:'uint_fast16_t',u:'#`',p:18},
{t:M,n:'uint_fast32_t',u:'#`',p:19},
{t:M,n:'uint_fast64_t',u:'#`',p:20},
{t:M,n:'uint_least8_t',u:'#`',p:21},
{t:M,n:'uint_least16_t',u:'#`',p:22},
{t:M,n:'uint_least32_t',u:'#`',p:23},
{t:M,n:'uint_least64_t',u:'#`',p:24},
{t:M,n:'intmax_t',u:'#`',p:25},
{t:M,n:'intptr_t',u:'#`',p:26},
{t:M,n:'uintmax_t',u:'#`',p:27},
{t:M,n:'uintptr_t',u:'#`',p:28},
{t:M,n:'INT8_C',u:'#`',p:29},
{t:M,n:'INT16_C',u:'#`',p:30},
{t:M,n:'INT32_C',u:'#`',p:31},
{t:M,n:'INT64_C',u:'#`',p:32},
{t:M,n:'INT8_MAX',u:'#`',p:33},
{t:M,n:'INT16_MAX',u:'#`',p:34},
{t:M,n:'INT32_MAX',u:'#`',p:35},
{t:M,n:'INT64_MAX',u:'#`',p:36},
{t:M,n:'INT8_MIN',u:'#`',p:37},
{t:M,n:'INT16_MIN',u:'#`',p:38},
{t:M,n:'INT32_MIN',u:'#`',p:39},
{t:M,n:'INT64_MIN',u:'#`',p:40},
{t:M,n:'INT_FAST8_MAX',u:'#`',p:41},
{t:M,n:'INT_FAST16_MAX',u:'#`',p:42},
{t:M,n:'INT_FAST32_MAX',u:'#`',p:43},
{t:M,n:'INT_FAST64_MAX',u:'#`',p:44},
{t:M,n:'INT_FAST8_MIN',u:'#`',p:45},
{t:M,n:'INT_FAST16_MIN',u:'#`',p:46},
{t:M,n:'INT_FAST32_MIN',u:'#`',p:47},
{t:M,n:'INT_FAST64_MIN',u:'#`',p:48},
{t:M,n:'INT_LEAST8_MAX',u:'#`',p:49},
{t:M,n:'INT_LEAST16_MAX',u:'#`',p:50},
{t:M,n:'INT_LEAST32_MAX',u:'#`',p:51},
{t:M,n:'INT_LEAST64_MAX',u:'#`',p:52},
{t:M,n:'INT_LEAST8_MIN',u:'#`',p:53},
{t:M,n:'INT_LEAST16_MIN',u:'#`',p:54},
{t:M,n:'INT_LEAST32_MIN',u:'#`',p:55},
{t:M,n:'INT_LEAST64_MIN',u:'#`',p:56},
{t:M,n:'UINT8_C',u:'#`',p:57},
{t:M,n:'UINT16_C',u:'#`',p:58},
{t:M,n:'UINT32_C',u:'#`',p:59},
{t:M,n:'UINT64_C',u:'#`',p:60},
{t:M,n:'UINTMAX_C',u:'#`',p:61},
{t:M,n:'UINT8_MAX',u:'#`',p:62},
{t:M,n:'UINT16_MAX',u:'#`',p:63},
{t:M,n:'UINT32_MAX',u:'#`',p:64},
{t:M,n:'UINT64_MAX',u:'#`',p:65},
{t:M,n:'UINT_FAST8_MAX',u:'#`',p:66},
{t:M,n:'UINT_FAST16_MAX',u:'#`',p:67},
{t:M,n:'UINT_FAST32_MAX',u:'#`',p:68},
{t:M,n:'UINT_FAST64_MAX',u:'#`',p:69},
{t:M,n:'UINT_LEAST8_MAX',u:'#`',p:70},
{t:M,n:'UINT_LEAST16_MAX',u:'#`',p:71},
{t:M,n:'UINT_LEAST32_MAX',u:'#`',p:72},
{t:M,n:'UINT_LEAST64_MAX',u:'#`',p:73},
{t:M,n:'INTMAX_C',u:'#`',p:74},
{t:M,n:'INTMAX_MAX',u:'#`',p:75},
{t:M,n:'INTMAX_MIN',u:'#`',p:76},
{t:M,n:'INTPTR_MAX',u:'#`',p:77},
{t:M,n:'INTPTR_MIN',u:'#`',p:78},
{t:M,n:'PTRDIFF_MAX',u:'#`',p:79},
{t:M,n:'PTRDIFF_MIN',u:'#`',p:80},
{t:M,n:'SIG_ATOMIC_MAX',u:'#`',p:81},
{t:M,n:'SIG_ATOMIC_MIN',u:'#`',p:82},
{t:M,n:'SIZE_MAX',u:'#`',p:83},
{t:M,n:'WCHAR_MAX',u:'#`',p:84},
{t:M,n:'WCHAR_MIN',u:'#`',p:85},
{t:M,n:'WINT_MAX',u:'#`',p:86},
{t:M,n:'WINT_MIN',u:'#`',p:87},
{t:M,n:'UINTMAX_MAX',u:'#`',p:88},
{t:M,n:'UINTPTR_MAX',u:'#`',p:89},
{t:P,n:'stdio.h',c:'?manual=compleat&page=`tml',p:865},
{t:M,n:'_IOFBF',u:'#`',p:1},
{t:M,n:'_IOLBF',u:'#`',p:2},
{t:M,n:'_IONBF',u:'#`',p:3},
{t:M,n:'BUFSIZ',u:'#`',p:4},
{t:M,n:'EOF',u:'#`',p:5},
{t:M,n:'FILE',u:'#`',p:6},
{t:M,n:'FILENAME_MAX',u:'#`',p:7},
{t:M,n:'FOPEN_MAX',u:'#`',p:8},
{t:M,n:'L_tmpnam',u:'#`',p:9},
{t:M,n:'NULL',u:'#`',p:10},
{t:M,n:'SEEK_CUR',u:'#`',p:11},
{t:M,n:'SEEK_END',u:'#`',p:12},
{t:M,n:'SEEK_SET',u:'#`',p:13},
{t:M,n:'TMP_MAX',u:'#`',p:14},
{t:M,n:'clearerr',u:'#`',p:15},
{t:M,n:'fclose',u:'#`',p:16},
{t:M,n:'feof',u:'#`',p:17},
{t:M,n:'ferror',u:'#`',p:18},
{t:M,n:'fflush',u:'#`',p:19},
{t:M,n:'fgetc',u:'#`',p:20},
{t:M,n:'fgetpos',u:'#`',p:21},
{t:M,n:'fgets',u:'#`',p:22},
{t:M,n:'fopen',u:'#`',p:23},
{t:M,n:'fpos_t',u:'#`',p:24},
{t:M,n:'fprintf',u:'#`',p:25},
{t:M,n:'fputc',u:'#`',p:26},
{t:M,n:'fputs',u:'#`',p:27},
{t:M,n:'fread',u:'#`',p:28},
{t:M,n:'freopen',u:'#`',p:29},
{t:M,n:'fscanf',u:'#`',p:30},
{t:M,n:'fseek',u:'#`',p:31},
{t:M,n:'fsetpos',u:'#`',p:32},
{t:M,n:'ftell',u:'#`',p:33},
{t:M,n:'fwrite',u:'#`',p:34},
{t:M,n:'getc',u:'#`',p:35},
{t:M,n:'getchar',u:'#`',p:36},
{t:M,n:'gets',u:'#`',p:37},
{t:M,n:'perror',u:'#`',p:38},
{t:M,n:'printf',u:'#`',p:39},
{t:M,n:'putc',u:'#`',p:40},
{t:M,n:'putchar',u:'#`',p:41},
{t:M,n:'puts',u:'#`',p:42},
{t:M,n:'remove',u:'#`',p:43},
{t:M,n:'rename',u:'#`',p:44},
{t:M,n:'rewind',u:'#`',p:45},
{t:M,n:'scanf',u:'#`',p:46},
{t:M,n:'setbuf',u:'#`',p:47},
{t:M,n:'setvbuf',u:'#`',p:48},
{t:M,n:'size_t',u:'#`',p:49},
{t:M,n:'snprintf',u:'#`',p:50},
{t:M,n:'sprintf',u:'#`',p:51},
{t:M,n:'sscanf',u:'#`',p:52},
{t:M,n:'stderr',u:'#`',p:53},
{t:M,n:'stdin',u:'#`',p:54},
{t:M,n:'stdout',u:'#`',p:55},
{t:M,n:'tmpfile',u:'#`',p:56},
{t:M,n:'tmpnam',u:'#`',p:57},
{t:M,n:'ungetc',u:'#`',p:58},
{t:M,n:'vfprintf',u:'#`',p:59},
{t:M,n:'vfscanf',u:'#`',p:60},
{t:M,n:'vprintf',u:'#`',p:61},
{t:M,n:'vscanf',u:'#`',p:62},
{t:M,n:'vsnprintf',u:'#`',p:63},
{t:M,n:'vsprintf',u:'#`',p:64},
{t:M,n:'vsscanf',u:'#`',p:65},
{t:P,n:'stdlib.h',c:'?manual=compleat&page=`tml',p:931},
{t:M,n:'EXIT_FAILURE',u:'#`',p:1},
{t:M,n:'EXIT_SUCCESS',u:'#`',p:2},
{t:M,n:'MB_CUR_MAX',u:'#`',p:3},
{t:M,n:'NULL',u:'#`',p:4},
{t:M,n:'RAND_MAX',u:'#`',p:5},
{t:M,n:'abort',u:'#`',p:6},
{t:M,n:'abs',u:'#`',p:7},
{t:M,n:'atexit',u:'#`',p:8},
{t:M,n:'atof',u:'#`',p:9},
{t:M,n:'atoi',u:'#`',p:10},
{t:M,n:'atol',u:'#`',p:11},
{t:M,n:'atoll',u:'#`',p:12},
{t:M,n:'bsearch',u:'#`',p:13},
{t:M,n:'calloc',u:'#`',p:14},
{t:M,n:'div',u:'#`',p:15},
{t:M,n:'div_t',u:'#`',p:16},
{t:M,n:'_Exit',u:'#`',p:17},
{t:M,n:'exit',u:'#`',p:18},
{t:M,n:'free',u:'#`',p:19},
{t:M,n:'getenv',u:'#`',p:20},
{t:M,n:'labs',u:'#`',p:21},
{t:M,n:'llabs',u:'#`',p:22},
{t:M,n:'ldiv',u:'#`',p:23},
{t:M,n:'ldiv_t',u:'#`',p:24},
{t:M,n:'ldiv',u:'#l`',p:25},
{t:M,n:'ldiv_t',u:'#l`',p:26},
{t:M,n:'malloc',u:'#`',p:27},
{t:M,n:'mblen',u:'#`',p:28},
{t:M,n:'mbstowcs',u:'#`',p:29},
{t:M,n:'mbtowc',u:'#`',p:30},
{t:M,n:'qsort',u:'#`',p:31},
{t:M,n:'rand',u:'#`',p:32},
{t:M,n:'realloc',u:'#`',p:33},
{t:M,n:'size_t',u:'#`',p:34},
{t:M,n:'srand',u:'#`',p:35},
{t:M,n:'strtod',u:'#`',p:36},
{t:M,n:'strtof',u:'#`',p:37},
{t:M,n:'strtol',u:'#`',p:38},
{t:M,n:'strtold',u:'#`',p:39},
{t:M,n:'strtoll',u:'#`',p:40},
{t:M,n:'strtoul',u:'#`',p:41},
{t:M,n:'strtoull',u:'#`',p:42},
{t:M,n:'system',u:'#`',p:43},
{t:M,n:'wchar_t',u:'#`',p:44},
{t:M,n:'wcstombs',u:'#`',p:45},
{t:M,n:'wctomb',u:'#`',p:46},
{t:P,n:'string.h',c:'?manual=compleat&page=`tml',p:978},
{t:M,n:'memchr',u:'#`',p:1},
{t:M,n:'memcmp',u:'#`',p:2},
{t:M,n:'memcpy',u:'#`',p:3},
{t:M,n:'memmove',u:'#`',p:4},
{t:M,n:'memset',u:'#`',p:5},
{t:M,n:'NULL',u:'#`',p:6},
{t:M,n:'size_t',u:'#`',p:7},
{t:M,n:'strcat',u:'#`',p:8},
{t:M,n:'strchr',u:'#`',p:9},
{t:M,n:'strcmp',u:'#`',p:10},
{t:M,n:'strcoll',u:'#`',p:11},
{t:M,n:'strcpy',u:'#`',p:12},
{t:M,n:'strcspn',u:'#`',p:13},
{t:M,n:'strerror',u:'#`',p:14},
{t:M,n:'strlen',u:'#`',p:15},
{t:M,n:'strncat',u:'#`',p:16},
{t:M,n:'strncmp',u:'#`',p:17},
{t:M,n:'strncpy',u:'#`',p:18},
{t:M,n:'strpbrk',u:'#`',p:19},
{t:M,n:'strrchr',u:'#`',p:20},
{t:M,n:'strspn',u:'#`',p:21},
{t:M,n:'strstr',u:'#`',p:22},
{t:M,n:'strtok',u:'#`',p:23},
{t:M,n:'strxfrm',u:'#`',p:24},
{t:P,n:'tgmath.h',c:'?manual=compleat&page=`tml',p:1003},
{t:M,n:'acos',u:'#`',p:1},
{t:M,n:'acosh',u:'#`',p:2},
{t:M,n:'asin',u:'#`',p:3},
{t:M,n:'asinh',u:'#`',p:4},
{t:M,n:'atan',u:'#`',p:5},
{t:M,n:'atanh',u:'#`',p:6},
{t:M,n:'atan2',u:'#`',p:7},
{t:M,n:'carg',u:'#`',p:8},
{t:M,n:'cbrt',u:'#`',p:9},
{t:M,n:'ceil',u:'#`',p:10},
{t:M,n:'cimag',u:'#`',p:11},
{t:M,n:'conj',u:'#`',p:12},
{t:M,n:'copysign',u:'#`',p:13},
{t:M,n:'cos',u:'#`',p:14},
{t:M,n:'cosh',u:'#`',p:15},
{t:M,n:'cproj',u:'#`',p:16},
{t:M,n:'creal',u:'#`',p:17},
{t:M,n:'erf',u:'#`',p:18},
{t:M,n:'erfc',u:'#`',p:19},
{t:M,n:'exp',u:'#`',p:20},
{t:M,n:'exp2',u:'#`',p:21},
{t:M,n:'expm1',u:'#`',p:22},
{t:M,n:'fabs',u:'#`',p:23},
{t:M,n:'fdim',u:'#`',p:24},
{t:M,n:'floor',u:'#`',p:25},
{t:M,n:'fma',u:'#`',p:26},
{t:M,n:'fmax',u:'#`',p:27},
{t:M,n:'fmin',u:'#`',p:28},
{t:M,n:'fmod',u:'#`',p:29},
{t:M,n:'frexp',u:'#`',p:30},
{t:M,n:'hypot',u:'#`',p:31},
{t:M,n:'ilogb',u:'#`',p:32},
{t:M,n:'ldexp',u:'#`',p:33},
{t:M,n:'lgamma',u:'#`',p:34},
{t:M,n:'llrint',u:'#`',p:35},
{t:M,n:'llround',u:'#`',p:36},
{t:M,n:'log',u:'#`',p:37},
{t:M,n:'log10',u:'#`',p:38},
{t:M,n:'log1p',u:'#`',p:39},
{t:M,n:'log2',u:'#`',p:40},
{t:M,n:'logb',u:'#`',p:41},
{t:M,n:'lrint',u:'#`',p:42},
{t:M,n:'lround',u:'#`',p:43},
{t:M,n:'modf',u:'#`',p:44},
{t:M,n:'nearbyint',u:'#`',p:45},
{t:M,n:'nextafter',u:'#`',p:46},
{t:M,n:'nexttoward',u:'#`',p:47},
{t:M,n:'pow',u:'#`',p:48},
{t:M,n:'remainder',u:'#`',p:49},
{t:M,n:'remquo',u:'#`',p:50},
{t:M,n:'rint',u:'#`',p:51},
{t:M,n:'round',u:'#`',p:52},
{t:M,n:'scalbln',u:'#`',p:53},
{t:M,n:'scalbn',u:'#`',p:54},
{t:M,n:'sin',u:'#`',p:55},
{t:M,n:'sinh',u:'#`',p:56},
{t:M,n:'sqrt',u:'#`',p:57},
{t:M,n:'tan',u:'#`',p:58},
{t:M,n:'tanh',u:'#`',p:59},
{t:M,n:'tgamma',u:'#`',p:60},
{t:M,n:'trunc',u:'#`',p:61},
{t:P,n:'time.h',c:'?manual=compleat&page=`tml',p:1065},
{t:M,n:'time string',u:'#`',p:1},
{t:M,n:'asctime',u:'#`',p:2},
{t:M,n:'time structure',u:'#`',p:3},
{t:P,n:'uchar.h',c:'?manual=compleat&page=`tml',p:1069},
{t:M,n:'NULL',u:'#`',p:1},
{t:M,n:'__STDC_UTF_16__',u:'#`',p:2},
{t:M,n:'__STDC_UTF_32__',u:'#`',p:3},
{t:M,n:'char16_t',u:'#`',p:4},
{t:M,n:'char32_t',u:'#`',p:5},
{t:M,n:'mbstate_t',u:'#`',p:6},
{t:M,n:'size_t',u:'#`',p:7},
{t:M,n:'c16rtomb',u:'#`',p:8},
{t:M,n:'c32rtomb',u:'#`',p:9},
{t:M,n:'mbrtoc16',u:'#`',p:10},
{t:M,n:'mbrtoc32',u:'#`',p:11},
{t:P,n:'wchar.h',c:'?manual=compleat&page=`tml',p:1081},
{t:M,n:'NULL',u:'#`',p:1},
{t:M,n:'WCHAR_MAX',u:'#`',p:2},
{t:M,n:'WCHAR_MIN',u:'#`',p:3},
{t:M,n:'WEOF',u:'#`',p:4},
{t:M,n:'btowc',u:'#`',p:5},
{t:M,n:'fgetwc',u:'#`',p:6},
{t:M,n:'fgetws',u:'#`',p:7},
{t:M,n:'fputwc',u:'#`',p:8},
{t:M,n:'fputws',u:'#`',p:9},
{t:M,n:'fwide',u:'#`',p:10},
{t:M,n:'fwprintf',u:'#`',p:11},
{t:M,n:'fwscanf',u:'#`',p:12},
{t:M,n:'getwc',u:'#`',p:13},
{t:M,n:'getwchar',u:'#`',p:14},
{t:M,n:'mbrlen',u:'#`',p:15},
{t:M,n:'mbrtowc',u:'#`',p:16},
{t:M,n:'mbsinit',u:'#`',p:17},
{t:M,n:'mbsrtowcs',u:'#`',p:18},
{t:M,n:'mbstate_t',u:'#`',p:19},
{t:M,n:'putwc',u:'#`',p:20},
{t:M,n:'putwchar',u:'#`',p:21},
{t:M,n:'size_t',u:'#`',p:22},
{t:M,n:'swprintf',u:'#`',p:23},
{t:M,n:'swscanf',u:'#`',p:24},
{t:M,n:'tm',u:'#`',p:25},
{t:M,n:'ungetwc',u:'#`',p:26},
{t:M,n:'vfwprintf',u:'#`',p:27},
{t:M,n:'vfwscanf',u:'#`',p:28},
{t:M,n:'vswprintf',u:'#`',p:29},
{t:M,n:'vswscanf',u:'#`',p:30},
{t:M,n:'vwprintf',u:'#`',p:31},
{t:M,n:'vwscanf',u:'#`',p:32},
{t:M,n:'wchar_t',u:'#`',p:33},
{t:M,n:'wcrtomb',u:'#`',p:34},
{t:M,n:'wcscat',u:'#`',p:35},
{t:M,n:'wcschr',u:'#`',p:36},
{t:M,n:'wcscmp',u:'#`',p:37},
{t:M,n:'wcscoll',u:'#`',p:38},
{t:M,n:'wcscpy',u:'#`',p:39},
{t:M,n:'wcscspn',u:'#`',p:40},
{t:M,n:'wcsftime',u:'#`',p:41},
{t:M,n:'wcslen',u:'#`',p:42},
{t:M,n:'wcsncat',u:'#`',p:43},
{t:M,n:'wcsncmp',u:'#`',p:44},
{t:M,n:'wcsncpy',u:'#`',p:45},
{t:M,n:'wcspbrk',u:'#`',p:46},
{t:M,n:'wcsrchr',u:'#`',p:47},
{t:M,n:'wcsrtombs',u:'#`',p:48},
{t:M,n:'wcsspn',u:'#`',p:49},
{t:M,n:'wcsstr',u:'#`',p:50},
{t:M,n:'wcstod',u:'#`',p:51},
{t:M,n:'wcstof',u:'#`',p:52},
{t:M,n:'wcstok',u:'#`',p:53},
{t:M,n:'wcstold',u:'#`',p:54},
{t:M,n:'wcstol',u:'#`',p:55},
{t:M,n:'wcstoll',u:'#`',p:56},
{t:M,n:'wcstoul',u:'#`',p:57},
{t:M,n:'wcstoull',u:'#`',p:58},
{t:M,n:'wcsxfrm',u:'#`',p:59},
{t:M,n:'wctob',u:'#`',p:60},
{t:M,n:'wint_t',u:'#`',p:61},
{t:M,n:'wmemchr',u:'#`',p:62},
{t:M,n:'wmemcmp',u:'#`',p:63},
{t:M,n:'wmemcpy',u:'#`',p:64},
{t:M,n:'wmemmove',u:'#`',p:65},
{t:M,n:'wmemset',u:'#`',p:66},
{t:M,n:'wprintf',u:'#`',p:67},
{t:M,n:'wscanf',u:'#`',p:68},
{t:P,n:'wctype.h',c:'?manual=compleat&page=`tml',p:1150},
{t:M,n:'iswalnum',u:'#`',p:1},
{t:M,n:'iswalpha',u:'#`',p:2},
{t:M,n:'iswblank',u:'#`',p:3},
{t:M,n:'iswcntrl',u:'#`',p:4},
{t:M,n:'iswdigit',u:'#`',p:5},
{t:M,n:'iswgraph',u:'#`',p:6},
{t:M,n:'iswlower',u:'#`',p:7},
{t:M,n:'iswprint',u:'#`',p:8},
{t:M,n:'iswpunct',u:'#`',p:9},
{t:M,n:'iswspace',u:'#`',p:10},
{t:M,n:'iswupper',u:'#`',p:11},
{t:M,n:'iswxdigit',u:'#`',p:12},
{t:M,n:'towlower',u:'#`',p:13},
{t:M,n:'towctrans',u:'#`',p:14},
{t:M,n:'towupper',u:'#`',p:15},
{t:M,n:'wctrans',u:'#`',p:16},
{t:M,n:'wctype',u:'#`',p:17},
{t:D,n:'Standard C++ Library',u:'#Standard%20C++%20Library',c:'http://www.dinkumware.com/manuals/',p:1218},
{t:P,n:'algorithm',c:'?manual=compleat&page=algorith.html',p:1},
{t:M,n:'adjacent_find',u:'#`',p:1},
{t:M,n:'binary_search',u:'#`',p:2},
{t:M,n:'copy',u:'#`',p:3},
{t:M,n:'copy_backward',u:'#`',p:4},
{t:M,n:'count',u:'#`',p:5},
{t:M,n:'count_if',u:'#`',p:6},
{t:M,n:'equal',u:'#`',p:7},
{t:M,n:'equal_range',u:'#`',p:8},
{t:M,n:'fill',u:'#`',p:9},
{t:M,n:'fill_n',u:'#`',p:10},
{t:M,n:'find',u:'#`',p:11},
{t:M,n:'find_end',u:'#`',p:12},
{t:M,n:'find_first_of',u:'#`',p:13},
{t:M,n:'find_if',u:'#`',p:14},
{t:M,n:'for_each',u:'#`',p:15},
{t:M,n:'generate',u:'#`',p:16},
{t:M,n:'generate_n',u:'#`',p:17},
{t:M,n:'includes',u:'#`',p:18},
{t:M,n:'inplace_merge',u:'#`',p:19},
{t:M,n:'iter_swap',u:'#`',p:20},
{t:M,n:'lexicographical_compare',u:'#`',p:21},
{t:M,n:'lower_bound',u:'#`',p:22},
{t:M,n:'make_heap',u:'#`',p:23},
{t:M,n:'max',u:'#`',p:24},
{t:M,n:'max_element',u:'#`',p:25},
{t:M,n:'merge',u:'#`',p:26},
{t:M,n:'min',u:'#`',p:27},
{t:M,n:'min_element',u:'#`',p:28},
{t:M,n:'mismatch',u:'#`',p:29},
{t:M,n:'next_permutation',u:'#`',p:30},
{t:M,n:'nth_element',u:'#`',p:31},
{t:M,n:'partial_sort',u:'#`',p:32},
{t:M,n:'partial_sort_copy',u:'#`',p:33},
{t:M,n:'partition',u:'#`',p:34},
{t:M,n:'pop_heap',u:'#`',p:35},
{t:M,n:'prev_permutation',u:'#`',p:36},
{t:M,n:'push_heap',u:'#`',p:37},
{t:M,n:'random_shuffle',u:'#`',p:38},
{t:M,n:'remove',u:'#`',p:39},
{t:M,n:'remove_copy',u:'#`',p:40},
{t:M,n:'remove_copy_if',u:'#`',p:41},
{t:M,n:'remove_if',u:'#`',p:42},
{t:M,n:'replace',u:'#`',p:43},
{t:M,n:'replace_copy',u:'#`',p:44},
{t:M,n:'replace_copy_if',u:'#`',p:45},
{t:M,n:'replace_if',u:'#`',p:46},
{t:M,n:'reverse',u:'#`',p:47},
{t:M,n:'reverse_copy',u:'#`',p:48},
{t:M,n:'rotate',u:'#`',p:49},
{t:M,n:'rotate_copy',u:'#`',p:50},
{t:M,n:'search',u:'#`',p:51},
{t:M,n:'search_n',u:'#`',p:52},
{t:M,n:'set_difference',u:'#`',p:53},
{t:M,n:'set_intersection',u:'#`',p:54},
{t:M,n:'set_symmetric_difference',u:'#`',p:55},
{t:M,n:'set_union',u:'#`',p:56},
{t:M,n:'sort',u:'#`',p:57},
{t:M,n:'sort_heap',u:'#`',p:58},
{t:M,n:'stable_partition',u:'#`',p:59},
{t:M,n:'stable_sort',u:'#`',p:60},
{t:M,n:'swap',u:'#`',p:61},
{t:M,n:'swap_ranges',u:'#`',p:62},
{t:M,n:'transform',u:'#`',p:63},
{t:M,n:'unique',u:'#`',p:64},
{t:M,n:'unique_copy',u:'#`',p:65},
{t:M,n:'upper_bound',u:'#`',p:66},
{t:P,n:'array',c:'?manual=compleat&page=`.html',p:68},
{t:M,n:'array',u:'#`',p:1},
{t:M,n:'get',u:'#`',p:2},
{t:M,n:'operator!==',u:'#operator!=',p:3},
{t:M,n:'operator==',u:'#`',p:4},
{t:M,n:'operator<',u:'#`',p:5},
{t:M,n:'operator<=',u:'#`',p:6},
{t:M,n:'operator>',u:'#`',p:7},
{t:M,n:'operator>=',u:'#`',p:8},
{t:M,n:'swap',u:'#`',p:9},
{t:M,n:'tuple_element',u:'#`',p:10},
{t:M,n:'tuple_size',u:'#`',p:11},
{t:P,n:'bitset',c:'?manual=compleat&page=`.html',p:80},
{t:M,n:'bitset',u:'#`',p:1},
{t:M,n:'operator&',u:'#`',p:2},
{t:M,n:'operator|',u:'#`',p:3},
{t:M,n:'operator^',u:'#`',p:4},
{t:M,n:'operator>>',u:'#`',p:5},
{t:M,n:'operator<<',u:'#`',p:6},
{t:P,n:'cassert',u:'?manual=compleat&page=`.html',p:87},
{t:P,n:'ccomplex',u:'?manual=compleat&page=`.html',p:88},
{t:P,n:'cctype',u:'?manual=compleat&page=`.html',p:89},
{t:P,n:'cerrno',u:'?manual=compleat&page=`.html',p:90},
{t:P,n:'cfenv',u:'?manual=compleat&page=`.html',p:91},
{t:P,n:'cfloat',u:'?manual=compleat&page=`.html',p:92},
{t:P,n:'cinttype',u:'?manual=compleat&page=`.html',p:93},
{t:P,n:'ciso646',u:'?manual=compleat&page=`.html',p:94},
{t:P,n:'climits',u:'?manual=compleat&page=`.html',p:95},
{t:P,n:'clocale',u:'?manual=compleat&page=`.html',p:96},
{t:P,n:'cmath',u:'?manual=compleat&page=`.html',p:97},
{t:P,n:'complex',c:'?manual=compleat&page=`.html',p:98},
{t:M,n:'abs',u:'#`',p:1},
{t:M,n:'arg',u:'#`',p:2},
{t:M,n:'complex',u:'#`',p:3},
{t:M,n:'complex<double>',u:'#`',p:4},
{t:M,n:'complex<float>',u:'#`',p:5},
{t:M,n:'complex<long double>',u:'#`',p:6},
{t:M,n:'conj',u:'#`',p:7},
{t:M,n:'cos',u:'#`',p:8},
{t:M,n:'cosh',u:'#`',p:9},
{t:M,n:'exp',u:'#`',p:10},
{t:M,n:'imag',u:'#`',p:11},
{t:M,n:'log',u:'#`',p:12},
{t:M,n:'log10',u:'#`',p:13},
{t:M,n:'norm',u:'#`',p:14},
{t:M,n:'operator!=',u:'#`',p:15},
{t:M,n:'operator*',u:'#`',p:16},
{t:M,n:'operator+',u:'#`',p:17},
{t:M,n:'operator-',u:'#`',p:18},
{t:M,n:'operator/',u:'#`',p:19},
{t:M,n:'operator<<',u:'#`',p:20},
{t:M,n:'operator==',u:'#`',p:21},
{t:M,n:'operator>>',u:'#`',p:22},
{t:M,n:'polar',u:'#`',p:23},
{t:M,n:'pow',u:'#`',p:24},
{t:M,n:'real',u:'#`',p:25},
{t:M,n:'sin',u:'#`',p:26},
{t:M,n:'sinh',u:'#`',p:27},
{t:M,n:'sqrt',u:'#`',p:28},
{t:M,n:'tan',u:'#`',p:29},
{t:M,n:'tanh',u:'#`',p:30},
{t:M,n:'__STD_COMPLEX',u:'#`',p:31},
{t:P,n:'csetjmp',u:'?manual=compleat&page=`.html',p:130},
{t:P,n:'csignal',u:'?manual=compleat&page=`.html',p:131},
{t:P,n:'cstdarg',u:'?manual=compleat&page=`.html',p:132},
{t:P,n:'ccstdbool',u:'?manual=compleat&page=cstdbool.html',p:133},
{t:P,n:'cstddef',u:'?manual=compleat&page=`.html',p:134},
{t:P,n:'cstdint',u:'?manual=compleat&page=`.html',p:135},
{t:P,n:'cstdio',u:'?manual=compleat&page=`.html',p:136},
{t:P,n:'cstdlib',u:'?manual=compleat&page=`.html',p:137},
{t:P,n:'cstring',u:'?manual=compleat&page=`.html',p:138},
{t:P,n:'ctgmath',u:'?manual=compleat&page=`.html',p:139},
{t:P,n:'ctime',u:'?manual=compleat&page=`.html',p:140},
{t:P,n:'cwchar',u:'?manual=compleat&page=`.html',p:141},
{t:P,n:'cwctype',u:'?manual=compleat&page=`.html',p:142},
{t:P,n:'deque',c:'?manual=compleat&page=`.html',p:143},
{t:M,n:'deque',u:'#`',p:1},
{t:M,n:'operator==',u:'#`',p:2},
{t:M,n:'operator!=',u:'#`',p:3},
{t:M,n:'operator<',u:'#`',p:4},
{t:M,n:'operator>',u:'#`',p:5},
{t:M,n:'operator<=',u:'#`',p:6},
{t:M,n:'operator>=',u:'#`',p:7},
{t:M,n:'swap',u:'#`',p:8},
{t:P,n:'exception',c:'?manual=compleat&page=exceptio.html',p:152},
{t:M,n:'exception',u:'#`',p:1},
{t:M,n:'bad_exception',u:'#`',p:2},
{t:M,n:'terminate_handler',u:'#`',p:3},
{t:M,n:'unexpected_handler',u:'#`',p:4},
{t:M,n:'set_terminate',u:'#`',p:5},
{t:M,n:'set_unexpected',u:'#`',p:6},
{t:M,n:'terminate',u:'#`',p:7},
{t:M,n:'unexpected',u:'#`',p:8},
{t:M,n:'uncaught_exception',u:'#`',p:9},
{t:M,n:'unexpected handler',u:'#`',p:10},
{t:M,n:'what',u:'#exception::`',p:11},
{t:M,n:'terminate handler',u:'#`',p:12},
{t:P,n:'fstream',c:'?manual=compleat&page=`.html',p:165},
{t:M,n:'basic_filebuf',u:'#`',p:1},
{t:M,n:'filebuf',u:'#`',p:2},
{t:M,n:'wfilebuf',u:'#`',p:3},
{t:M,n:'basic_ifstream',u:'#`',p:4},
{t:M,n:'ifstream',u:'#`',p:5},
{t:M,n:'wifstream',u:'#`',p:6},
{t:M,n:'basic_ofstream',u:'#`',p:7},
{t:M,n:'ofstream',u:'#`',p:8},
{t:M,n:'wofstream',u:'#`',p:9},
{t:M,n:'basic_fstream',u:'#`',p:10},
{t:M,n:'fstream',u:'#`',p:11},
{t:M,n:'wfstream',u:'#`',p:12},
{t:M,n:'char_type',u:'#basic_filebuf::`',p:13},
{t:M,n:'traits_type',u:'#basic_filebuf::`',p:14},
{t:M,n:'int_type',u:'#basic_filebuf::`',p:15},
{t:M,n:'pos_type',u:'#basic_filebuf::`',p:16},
{t:M,n:'off_type',u:'#basic_filebuf::`',p:17},
{t:M,n:'basic_filebuf',u:'#`::basic_filebuf',p:18},
{t:M,n:'is_open',u:'#basic_filebuf::`',p:19},
{t:M,n:'open',u:'#basic_filebuf::`',p:20},
{t:M,n:'close',u:'#basic_filebuf::`',p:21},
{t:M,n:'seekoff',u:'#basic_filebuf::`',p:22},
{t:M,n:'seekpos',u:'#basic_filebuf::`',p:23},
{t:M,n:'underflow',u:'#basic_filebuf::`',p:24},
{t:M,n:'pbackfail',u:'#basic_filebuf::`',p:25},
{t:M,n:'overflow',u:'#basic_filebuf::`',p:26},
{t:M,n:'sync',u:'#basic_filebuf::`',p:27},
{t:M,n:'setbuf',u:'#basic_filebuf::`',p:28},
{t:M,n:'file conversion facets',u:'#file conversion facet',p:29},
{t:M,n:'file pointer',u:'#`',p:30},
{t:M,n:'basic_fstream',u:'#`::basic_fstream',p:31},
{t:M,n:'rdbuf',u:'#basic_fstream::`',p:32},
{t:M,n:'is_open',u:'#basic_fstream::`',p:33},
{t:M,n:'open',u:'#basic_fstream::`',p:34},
{t:M,n:'close',u:'#basic_fstream::`',p:35},
{t:M,n:'rdbuf',u:'#basic_ifstream::`',p:36},
{t:M,n:'basic_ifstream',u:'#`::basic_ifstream',p:37},
{t:M,n:'is_open',u:'#basic_ifstream::`',p:38},
{t:M,n:'open',u:'#basic_ifstream::`',p:39},
{t:M,n:'close',u:'#basic_ifstream::`',p:40},
{t:M,n:'rdbuf',u:'#basic_ofstream::`',p:41},
{t:M,n:'basic_ofstream',u:'#`::basic_ofstream',p:42},
{t:M,n:'is_open',u:'#basic_ofstream::`',p:43},
{t:M,n:'open',u:'#basic_ofstream::`',p:44},
{t:M,n:'close',u:'#basic_ofstream::`',p:45},
{t:P,n:'fstream.h',u:'?manual=compleat&page=fstream2.html',p:211},
{t:P,n:'functional',c:'?manual=compleat&page=functio2.html',p:212},
{t:M,n:'binary_function',u:'#`',p:1},
{t:M,n:'binary_negate',u:'#`',p:2},
{t:M,n:'binder1st',u:'#`',p:3},
{t:M,n:'binder2nd',u:'#`',p:4},
{t:M,n:'const_mem_fun_t',u:'#`',p:5},
{t:M,n:'const_mem_fun_ref_t',u:'#`',p:6},
{t:M,n:'const_mem_fun1_t',u:'#`',p:7},
{t:M,n:'const_mem_fun1_ref_t',u:'#`',p:8},
{t:M,n:'divides',u:'#`',p:9},
{t:M,n:'equal_to',u:'#`',p:10},
{t:M,n:'greater',u:'#`',p:11},
{t:M,n:'greater_equal',u:'#`',p:12},
{t:M,n:'less',u:'#`',p:13},
{t:M,n:'less_equal',u:'#`',p:14},
{t:M,n:'logical_and',u:'#`',p:15},
{t:M,n:'logical_not',u:'#`',p:16},
{t:M,n:'logical_or',u:'#`',p:17},
{t:M,n:'mem_fun_t',u:'#`',p:18},
{t:M,n:'mem_fun_ref_t',u:'#`',p:19},
{t:M,n:'mem_fun1_t',u:'#`',p:20},
{t:M,n:'mem_fun1_ref_t',u:'#`',p:21},
{t:M,n:'minus',u:'#`',p:22},
{t:M,n:'modulus',u:'#`',p:23},
{t:M,n:'multiplies',u:'#`',p:24},
{t:M,n:'negate',u:'#`',p:25},
{t:M,n:'not_equal_to',u:'#`',p:26},
{t:M,n:'plus',u:'#`',p:27},
{t:M,n:'pointer_to_binary_function',u:'#`',p:28},
{t:M,n:'pointer_to_unary_function',u:'#`',p:29},
{t:M,n:'unary_function',u:'#`',p:30},
{t:M,n:'unary_negate',u:'#`',p:31},
{t:M,n:'bind1st',u:'#`',p:32},
{t:M,n:'bind2nd',u:'#`',p:33},
{t:M,n:'mem_fun',u:'#`',p:34},
{t:M,n:'mem_fun_ref',u:'#`',p:35},
{t:M,n:'not1',u:'#`',p:36},
{t:M,n:'not2',u:'#`',p:37},
{t:M,n:'ptr_fun',u:'#`',p:38},
{t:M,n:'bad_function_call',u:'#`',p:39},
{t:M,n:'bind',u:'#`',p:40},
{t:M,n:'cref',u:'#`',p:41},
{t:M,n:'function',u:'#`',p:42},
{t:M,n:'hash',u:'#`',p:43},
{t:M,n:'is_bind_expression',u:'#`',p:44},
{t:M,n:'is_placeholder',u:'#`',p:45},
{t:M,n:'mem_fn',u:'#`',p:46},
{t:M,n:'operator!==',u:'#operator!=',p:47},
{t:M,n:'operator==',u:'#`',p:48},
{t:M,n:'ref',u:'#`',p:49},
{t:M,n:'reference_wrapper',u:'#`',p:50},
{t:M,n:'result_of',u:'#`',p:51},
{t:M,n:'swap',u:'#`',p:52},
{t:M,n:'_1',u:'#`',p:53},
{t:P,n:'hardware',c:'?manual=compleat&page=`.html',p:266},
{t:M,n:'dynamic_address',u:'#`',p:1},
{t:M,n:'hw_base',u:'#`',p:2},
{t:M,n:'platform_traits',u:'#`',p:3},
{t:M,n:'register_access',u:'#`',p:4},
{t:M,n:'register_buffer',u:'#`',p:5},
{t:M,n:'register_traits',u:'#`',p:6},
{t:M,n:'static_address',u:'#`',p:7},
{t:P,n:'hash_map',c:'?manual=compleat&page=`.html',p:274},
{t:M,n:'hash_compare',u:'#`',p:1},
{t:M,n:'hash_map',u:'#`',p:2},
{t:M,n:'hash_multimap',u:'#`',p:3},
{t:M,n:'operator==',u:'#`',p:4},
{t:M,n:'operator!=',u:'#`',p:5},
{t:M,n:'operator<',u:'#`',p:6},
{t:M,n:'operator>',u:'#`',p:7},
{t:M,n:'operator<=',u:'#`',p:8},
{t:M,n:'operator>=',u:'#`',p:9},
{t:M,n:'swap',u:'#`',p:10},
{t:P,n:'hash_set',c:'?manual=compleat&page=`.html',p:285},
{t:M,n:'hash_set',u:'#`',p:1},
{t:M,n:'hash_multiset',u:'#`',p:2},
{t:M,n:'operator==',u:'#`',p:3},
{t:M,n:'operator!=',u:'#`',p:4},
{t:M,n:'operator<',u:'#`',p:5},
{t:M,n:'operator>',u:'#`',p:6},
{t:M,n:'operator<=',u:'#`',p:7},
{t:M,n:'operator>=',u:'#`',p:8},
{t:M,n:'swap',u:'#`',p:9},
{t:P,n:'iomanip',c:'?manual=compleat&page=`.html',p:295},
{t:M,n:'resetiosflags',u:'#`',p:1},
{t:M,n:'setiosflags',u:'#`',p:2},
{t:M,n:'setbase',u:'#`',p:3},
{t:M,n:'setfill',u:'#`',p:4},
{t:M,n:'setprecision',u:'#`',p:5},
{t:M,n:'setw',u:'#`',p:6},
{t:P,n:'iomanip.h',u:'?manual=compleat&page=iomanip2.html',p:302},
{t:P,n:'ios',c:'?manual=compleat&page=`.html',p:303},
{t:M,n:'basic_ios',u:'#`',p:1},
{t:M,n:'fpos',u:'#`',p:2},
{t:M,n:'ios',u:'#`',p:3},
{t:M,n:'ios_base',u:'#`',p:4},
{t:M,n:'streamoff',u:'#`',p:5},
{t:M,n:'streampos',u:'#`',p:6},
{t:M,n:'streamsize',u:'#`',p:7},
{t:M,n:'wios',u:'#`',p:8},
{t:M,n:'wstreampos',u:'#`',p:9},
{t:M,n:'boolalpha',u:'#`',p:10},
{t:M,n:'dec',u:'#`',p:11},
{t:M,n:'fixed',u:'#`',p:12},
{t:M,n:'hex',u:'#`',p:13},
{t:M,n:'hexfloat',u:'#`',p:14},
{t:M,n:'internal',u:'#`',p:15},
{t:M,n:'left',u:'#`',p:16},
{t:M,n:'noboolalpha',u:'#`',p:17},
{t:M,n:'noshowbase',u:'#`',p:18},
{t:M,n:'noshowpoint',u:'#`',p:19},
{t:M,n:'noshowpos',u:'#`',p:20},
{t:M,n:'noskipws',u:'#`',p:21},
{t:M,n:'nounitbuf',u:'#`',p:22},
{t:M,n:'nouppercase',u:'#`',p:23},
{t:M,n:'oct',u:'#`',p:24},
{t:M,n:'right',u:'#`',p:25},
{t:M,n:'scientific',u:'#`',p:26},
{t:M,n:'showbase',u:'#`',p:27},
{t:M,n:'showpoint',u:'#`',p:28},
{t:M,n:'showpos',u:'#`',p:29},
{t:M,n:'skipws',u:'#`',p:30},
{t:M,n:'unitbuf',u:'#`',p:31},
{t:M,n:'uppercase',u:'#`',p:32},
{t:P,n:'iosfwd',u:'?manual=compleat&page=`.html',p:336},
{t:P,n:'iostream',c:'?manual=compleat&page=`.html',p:337},
{t:M,n:'cin',u:'#`',p:1},
{t:M,n:'cout',u:'#`',p:2},
{t:M,n:'cerr',u:'#`',p:3},
{t:M,n:'clog',u:'#`',p:4},
{t:M,n:'wcin',u:'#`',p:5},
{t:M,n:'wcout',u:'#`',p:6},
{t:M,n:'wcerr',u:'#`',p:7},
{t:M,n:'wclog',u:'#`',p:8},
{t:P,n:'iostream.h',u:'?manual=compleat&page=iostrea2.html',p:346},
{t:P,n:'istream',c:'?manual=compleat&page=`.html',p:347},
{t:M,n:'basic_istream',u:'#`',p:1},
{t:M,n:'basic_iostream',u:'#`',p:2},
{t:M,n:'istream',u:'#`',p:3},
{t:M,n:'wistream',u:'#`',p:4},
{t:M,n:'iostream',u:'#`',p:5},
{t:M,n:'wiostream',u:'#`',p:6},
{t:M,n:'operator>>',u:'#`',p:7},
{t:M,n:'ws',u:'#`',p:8},
{t:P,n:'iterator',c:'?manual=compleat&page=`.html',p:356},
{t:M,n:'advance',u:'#`',p:1},
{t:M,n:'back_insert_iterator',u:'#`',p:2},
{t:M,n:'back_inserter',u:'#`',p:3},
{t:M,n:'bidirectional_iterator_tag',u:'#`',p:4},
{t:M,n:'distance',u:'#`',p:5},
{t:M,n:'forward_iterator_tag',u:'#`',p:6},
{t:M,n:'front_insert_iterator',u:'#`',p:7},
{t:M,n:'front_inserter',u:'#`',p:8},
{t:M,n:'input_iterator_tag',u:'#`',p:9},
{t:M,n:'insert_iterator',u:'#`',p:10},
{t:M,n:'inserter',u:'#`',p:11},
{t:M,n:'istream_iterator',u:'#`',p:12},
{t:M,n:'istreambuf_iterator',u:'#`',p:13},
{t:M,n:'iterator',u:'#`',p:14},
{t:M,n:'iterator_traits',u:'#`',p:15},
{t:M,n:'operator!=',u:'#`',p:16},
{t:M,n:'operator==',u:'#`',p:17},
{t:M,n:'operator<',u:'#`',p:18},
{t:M,n:'operator<=',u:'#`',p:19},
{t:M,n:'operator>',u:'#`',p:20},
{t:M,n:'operator>=',u:'#`',p:21},
{t:M,n:'operator+',u:'#`',p:22},
{t:M,n:'operator-',u:'#`',p:23},
{t:M,n:'ostream_iterator',u:'#`',p:24},
{t:M,n:'ostreambuf_iterator',u:'#`',p:25},
{t:M,n:'output_iterator_tag',u:'#`',p:26},
{t:M,n:'random_access_iterator_tag',u:'#`',p:27},
{t:M,n:'reverse_iterator',u:'#`',p:28},
{t:P,n:'limits',c:'?manual=compleat&page=`2.html',p:385},
{t:M,n:'float_denorm_style',u:'#`',p:1},
{t:M,n:'float_round_style',u:'#`',p:2},
{t:M,n:'numeric_limits',u:'#`',p:3},
{t:M,n:'has_denorm',u:'#numeric_limits::`',p:4},
{t:M,n:'has_denorm_loss',u:'#numeric_limits::`',p:5},
{t:M,n:'has_infinity',u:'#numeric_limits::`',p:6},
{t:M,n:'has_quiet_NaN',u:'#numeric_limits::`',p:7},
{t:M,n:'has_signaling_NaN',u:'#numeric_limits::`',p:8},
{t:M,n:'is_bounded',u:'#numeric_limits::`',p:9},
{t:M,n:'is_exact',u:'#numeric_limits::`',p:10},
{t:M,n:'is_iec559',u:'#numeric_limits::`',p:11},
{t:M,n:'is_integer',u:'#numeric_limits::`',p:12},
{t:M,n:'is_modulo',u:'#numeric_limits::`',p:13},
{t:M,n:'is_signed',u:'#numeric_limits::`',p:14},
{t:M,n:'is_specialized',u:'#numeric_limits::`',p:15},
{t:M,n:'tinyness_before',u:'#numeric_limits::`',p:16},
{t:M,n:'traps',u:'#numeric_limits::`',p:17},
{t:M,n:'round_style',u:'#numeric_limits::`',p:18},
{t:M,n:'digits',u:'#numeric_limits::`',p:19},
{t:M,n:'digits10',u:'#numeric_limits::`',p:20},
{t:M,n:'max_exponent',u:'#numeric_limits::`',p:21},
{t:M,n:'max_exponent10',u:'#numeric_limits::`',p:22},
{t:M,n:'min_exponent',u:'#numeric_limits::`',p:23},
{t:M,n:'min_exponent10',u:'#numeric_limits::`',p:24},
{t:M,n:'radix',u:'#numeric_limits::`',p:25},
{t:M,n:'denorm_min',u:'#numeric_limits::`',p:26},
{t:M,n:'epsilon',u:'#numeric_limits::`',p:27},
{t:M,n:'infinity',u:'#numeric_limits::`',p:28},
{t:M,n:'max',u:'#numeric_limits::`',p:29},
{t:M,n:'min',u:'#numeric_limits::`',p:30},
{t:M,n:'quiet_NaN',u:'#numeric_limits::`',p:31},
{t:M,n:'round_error',u:'#numeric_limits::`',p:32},
{t:M,n:'signaling_NaN',u:'#numeric_limits::`',p:33},
{t:M,n:'denorm_present',u:'#float_denorm_style::`',p:34},
{t:M,n:'IEC 559',u:'#`',p:35},
{t:M,n:'quiet NaN',u:'#`',p:36},
{t:M,n:'signaling NaN',u:'#`',p:37},
{t:P,n:'list',c:'?manual=compleat&page=`.html',p:423},
{t:M,n:'list',u:'#`',p:1},
{t:M,n:'operator==',u:'#`',p:2},
{t:M,n:'operator!=',u:'#`',p:3},
{t:M,n:'operator<',u:'#`',p:4},
{t:M,n:'operator>',u:'#`',p:5},
{t:M,n:'operator<=',u:'#`',p:6},
{t:M,n:'operator>=',u:'#`',p:7},
{t:M,n:'swap',u:'#`',p:8},
{t:P,n:'locale',c:'?manual=compleat&page=`2.html',p:432},
{t:M,n:'codecvt',u:'#`',p:1},
{t:M,n:'codecvt_base',u:'#`',p:2},
{t:M,n:'codecvt_byname',u:'#`',p:3},
{t:M,n:'collate',u:'#`',p:4},
{t:M,n:'collate_byname',u:'#`',p:5},
{t:M,n:'ctype',u:'#`',p:6},
{t:M,n:'ctype<char>',u:'#`',p:7},
{t:M,n:'ctype_base',u:'#`',p:8},
{t:M,n:'ctype_byname',u:'#`',p:9},
{t:M,n:'has_facet',u:'#`',p:10},
{t:M,n:'locale',u:'#`',p:11},
{t:M,n:'messages',u:'#`',p:12},
{t:M,n:'messages_base',u:'#`',p:13},
{t:M,n:'messages_byname',u:'#`',p:14},
{t:M,n:'money_base',u:'#`',p:15},
{t:M,n:'money_get',u:'#`',p:16},
{t:M,n:'money_put',u:'#`',p:17},
{t:M,n:'moneypunct',u:'#`',p:18},
{t:M,n:'moneypunct_byname',u:'#`',p:19},
{t:M,n:'num_get',u:'#`',p:20},
{t:M,n:'num_put',u:'#`',p:21},
{t:M,n:'numpunct',u:'#`',p:22},
{t:M,n:'numpunct_byname',u:'#`',p:23},
{t:M,n:'time_base',u:'#`',p:24},
{t:M,n:'time_get',u:'#`',p:25},
{t:M,n:'time_get_byname',u:'#`',p:26},
{t:M,n:'time_put',u:'#`',p:27},
{t:M,n:'time_put_byname',u:'#`',p:28},
{t:M,n:'use_facet',u:'#`',p:29},
{t:M,n:'isalnum',u:'#`',p:30},
{t:M,n:'isalpha',u:'#`',p:31},
{t:M,n:'iscntrl',u:'#`',p:32},
{t:M,n:'isdigit',u:'#`',p:33},
{t:M,n:'isgraph',u:'#`',p:34},
{t:M,n:'islower',u:'#`',p:35},
{t:M,n:'isprint',u:'#`',p:36},
{t:M,n:'ispunct',u:'#`',p:37},
{t:M,n:'isspace',u:'#`',p:38},
{t:M,n:'isupper',u:'#`',p:39},
{t:M,n:'isxdigit',u:'#`',p:40},
{t:M,n:'tolower',u:'#`',p:41},
{t:M,n:'toupper',u:'#`',p:42},
{t:P,n:'map',c:'?manual=compleat&page=`.html',p:475},
{t:M,n:'map',u:'#`',p:1},
{t:M,n:'multimap',u:'#`',p:2},
{t:M,n:'operator==',u:'#`',p:3},
{t:M,n:'operator!=',u:'#`',p:4},
{t:M,n:'operator<',u:'#`',p:5},
{t:M,n:'operator>',u:'#`',p:6},
{t:M,n:'operator<=',u:'#`',p:7},
{t:M,n:'operator>=',u:'#`',p:8},
{t:M,n:'swap',u:'#`',p:9},
{t:P,n:'memory',c:'?manual=compleat&page=`.html',p:485},
{t:M,n:'allocator',u:'#`',p:1},
{t:M,n:'auto_ptr',u:'#`',p:2},
{t:M,n:'auto_ptr_ref',u:'#`',p:3},
{t:M,n:'get_temporary_buffer',u:'#`',p:4},
{t:M,n:'operator!==',u:'#operator!=',p:5},
{t:M,n:'operator==',u:'#`',p:6},
{t:M,n:'raw_storage_iterator',u:'#`',p:7},
{t:M,n:'uninitialized_copy',u:'#`',p:8},
{t:M,n:'uninitialized_fill',u:'#`',p:9},
{t:M,n:'uninitialized_fill_n',u:'#`',p:10},
{t:M,n:'bad_weak_ptr',u:'#`',p:11},
{t:M,n:'const_pointer_cast',u:'#`',p:12},
{t:M,n:'dynamic_pointer_cast',u:'#`',p:13},
{t:M,n:'enable_shared_from_this',u:'#`',p:14},
{t:M,n:'get_deleter',u:'#`',p:15},
{t:M,n:'operator<',u:'#`',p:16},
{t:M,n:'operator<<',u:'#`',p:17},
{t:M,n:'shared_ptr',u:'#`',p:18},
{t:M,n:'static_pointer_cast',u:'#`',p:19},
{t:M,n:'swap',u:'#`',p:20},
{t:M,n:'weak_ptr',u:'#`',p:21},
{t:P,n:'new',c:'?manual=compleat&page=`.html',p:507},
{t:M,n:'new_handler',u:'#`',p:1},
{t:M,n:'bad_alloc',u:'#`',p:2},
{t:M,n:'nothrow_t',u:'#`',p:3},
{t:M,n:'nothrow',u:'#`',p:4},
{t:M,n:'set_new_handler',u:'#`',p:5},
{t:M,n:'operator delete',u:'#`',p:6},
{t:M,n:'operator delete[]',u:'#`',p:7},
{t:M,n:'operator new',u:'#`',p:8},
{t:M,n:'operator new[]',u:'#`',p:9},
{t:M,n:'new handler',u:'#`',p:10},
{t:M,n:'replaces',u:'#replaceable functions',p:11},
{t:P,n:'new.h',u:'?manual=compleat&page=new2.html',p:519},
{t:P,n:'numeric',c:'?manual=compleat&page=`.html',p:520},
{t:M,n:'accumulate',u:'#`',p:1},
{t:M,n:'inner_product',u:'#`',p:2},
{t:M,n:'partial_sum',u:'#`',p:3},
{t:M,n:'adjacent_difference',u:'#`',p:4},
{t:P,n:'ostream',c:'?manual=compleat&page=`.html',p:525},
{t:M,n:'basic_ostream',u:'#`',p:1},
{t:M,n:'ostream',u:'#`',p:2},
{t:M,n:'wostream',u:'#`',p:3},
{t:M,n:'operator<<',u:'#`',p:4},
{t:M,n:'endl',u:'#`',p:5},
{t:M,n:'ends',u:'#`',p:6},
{t:M,n:'flush',u:'#`',p:7},
{t:P,n:'queue',c:'?manual=compleat&page=`.html',p:533},
{t:M,n:'queue',u:'#`',p:1},
{t:M,n:'priority_queue',u:'#`',p:2},
{t:M,n:'operator==',u:'#`',p:3},
{t:M,n:'operator!=',u:'#`',p:4},
{t:M,n:'operator<',u:'#`',p:5},
{t:M,n:'operator>',u:'#`',p:6},
{t:M,n:'operator<=',u:'#`',p:7},
{t:M,n:'operator>=',u:'#`',p:8},
{t:M,n:'c',u:'#queue::`',p:9},
{t:M,n:'container_type',u:'#priority_queue::`',p:10},
{t:M,n:'value_type',u:'#priority_queue::`',p:11},
{t:M,n:'size_type',u:'#priority_queue::`',p:12},
{t:M,n:'reference',u:'#priority_queue::`',p:13},
{t:M,n:'const_reference',u:'#priority_queue::`',p:14},
{t:M,n:'priority_queue',u:'#`::priority_queue',p:15},
{t:M,n:'empty',u:'#priority_queue::`',p:16},
{t:M,n:'size',u:'#priority_queue::`',p:17},
{t:M,n:'top',u:'#priority_queue::`',p:18},
{t:M,n:'push',u:'#priority_queue::`',p:19},
{t:M,n:'pop',u:'#priority_queue::`',p:20},
{t:M,n:'c',u:'#priority_queue::`',p:21},
{t:M,n:'comp',u:'#priority_queue::`',p:22},
{t:M,n:'container_type',u:'#queue::`',p:23},
{t:M,n:'value_type',u:'#queue::`',p:24},
{t:M,n:'size_type',u:'#queue::`',p:25},
{t:M,n:'reference',u:'#queue::`',p:26},
{t:M,n:'const_reference',u:'#queue::`',p:27},
{t:M,n:'queue',u:'#`::queue',p:28},
{t:M,n:'empty',u:'#queue::`',p:29},
{t:M,n:'size',u:'#queue::`',p:30},
{t:M,n:'back',u:'#queue::`',p:31},
{t:M,n:'front',u:'#queue::`',p:32},
{t:M,n:'push',u:'#queue::`',p:33},
{t:M,n:'pop',u:'#queue::`',p:34},
{t:P,n:'random',c:'?manual=compleat&page=`.html',p:568},
{t:M,n:'bernoulli_distribution',u:'#`',p:1},
{t:M,n:'binomial_distribution',u:'#`',p:2},
{t:M,n:'discard_block',u:'#`',p:3},
{t:M,n:'exponential_distribution',u:'#`',p:4},
{t:M,n:'gamma_distribution',u:'#`',p:5},
{t:M,n:'geometric_distribution',u:'#`',p:6},
{t:M,n:'linear_congruential',u:'#`',p:7},
{t:M,n:'mersenne_twister',u:'#`',p:8},
{t:M,n:'minstd_rand0',u:'#`',p:9},
{t:M,n:'minstd_rand',u:'#`',p:10},
{t:M,n:'mt19937',u:'#`',p:11},
{t:M,n:'normal_distribution',u:'#`',p:12},
{t:M,n:'poisson_distribution',u:'#`',p:13},
{t:M,n:'random_device',u:'#`',p:14},
{t:M,n:'ranlux_base_01',u:'#`',p:15},
{t:M,n:'ranlux3',u:'#`',p:16},
{t:M,n:'ranlux3_01',u:'#`',p:17},
{t:M,n:'ranlux4',u:'#`',p:18},
{t:M,n:'ranlux4_01',u:'#`',p:19},
{t:M,n:'ranlux64_base_01',u:'#`',p:20},
{t:M,n:'subtract_with_carry',u:'#`',p:21},
{t:M,n:'subtract_with_carry_01',u:'#`',p:22},
{t:M,n:'uniform_int',u:'#`',p:23},
{t:M,n:'uniform_real',u:'#`',p:24},
{t:M,n:'variate_generator',u:'#`',p:25},
{t:M,n:'xor_combine',u:'#`',p:26},
{t:M,n:'_Rng_abort',u:'#`',p:27},
{t:P,n:'regex',c:'?manual=compleat&page=`.html',p:596},
{t:M,n:'basic_regex',u:'#`',p:1},
{t:M,n:'error_type',u:'#regex_constants::`',p:2},
{t:M,n:'match_flag_type',u:'#regex_constants::`',p:3},
{t:M,n:'match_results',u:'#`',p:4},
{t:M,n:'regex',u:'#`',p:5},
{t:M,n:'regex_constants',u:'#`',p:6},
{t:M,n:'regex_error',u:'#`',p:7},
{t:M,n:'regex_iterator',u:'#`',p:8},
{t:M,n:'regex_traits',u:'#`',p:9},
{t:M,n:'regex_traits<char>',u:'#`',p:10},
{t:M,n:'regex_traits<wchar_t>',u:'#`',p:11},
{t:M,n:'regex_token_iterator',u:'#`',p:12},
{t:M,n:'sub_match',u:'#`',p:13},
{t:M,n:'syntax_option_type',u:'#regex_constants::`',p:14},
{t:M,n:'wregex',u:'#`',p:15},
{t:M,n:'cmatch',u:'#`',p:16},
{t:M,n:'cregex_iterator',u:'#`',p:17},
{t:M,n:'cregex_token_iterator',u:'#`',p:18},
{t:M,n:'csub_match',u:'#`',p:19},
{t:M,n:'smatch',u:'#`',p:20},
{t:M,n:'sregex_iterator',u:'#`',p:21},
{t:M,n:'sregex_token_iterator',u:'#`',p:22},
{t:M,n:'ssub_match',u:'#`',p:23},
{t:M,n:'wcmatch',u:'#`',p:24},
{t:M,n:'wcregex_iterator',u:'#`',p:25},
{t:M,n:'wcregex_token_iterator',u:'#`',p:26},
{t:M,n:'wcsub_match',u:'#`',p:27},
{t:M,n:'wsmatch',u:'#`',p:28},
{t:M,n:'wsregex_iterator',u:'#`',p:29},
{t:M,n:'wsregex_token_iterator',u:'#`',p:30},
{t:M,n:'wssub_match',u:'#`',p:31},
{t:M,n:'regex_match',u:'#`',p:32},
{t:M,n:'regex_replace',u:'#`',p:33},
{t:M,n:'regex_search',u:'#`',p:34},
{t:M,n:'operator==',u:'#`',p:35},
{t:M,n:'operator!=',u:'#`',p:36},
{t:M,n:'operator<',u:'#`',p:37},
{t:M,n:'operator<=',u:'#`',p:38},
{t:M,n:'operator>',u:'#`',p:39},
{t:M,n:'operator>=',u:'#`',p:40},
{t:M,n:'operator<<',u:'#`',p:41},
{t:M,n:'swap',u:'#`',p:42},
{t:P,n:'set',c:'?manual=compleat&page=`.html',p:639},
{t:M,n:'set',u:'#`',p:1},
{t:M,n:'multiset',u:'#`',p:2},
{t:M,n:'operator==',u:'#`',p:3},
{t:M,n:'operator!=',u:'#`',p:4},
{t:M,n:'operator<',u:'#`',p:5},
{t:M,n:'operator>',u:'#`',p:6},
{t:M,n:'operator<=',u:'#`',p:7},
{t:M,n:'operator>=',u:'#`',p:8},
{t:M,n:'swap',u:'#`',p:9},
{t:P,n:'slist',c:'?manual=compleat&page=`.html',p:649},
{t:M,n:'slist',u:'#`',p:1},
{t:M,n:'operator==',u:'#`',p:2},
{t:M,n:'operator!=',u:'#`',p:3},
{t:M,n:'operator<',u:'#`',p:4},
{t:M,n:'operator>',u:'#`',p:5},
{t:M,n:'operator<=',u:'#`',p:6},
{t:M,n:'operator>=',u:'#`',p:7},
{t:M,n:'swap',u:'#`',p:8},
{t:M,n:'size',u:'#slist::`',p:9},
{t:M,n:'begin',u:'#slist::`',p:10},
{t:M,n:'end',u:'#slist::`',p:11},
{t:P,n:'sstream',c:'?manual=compleat&page=`.html',p:661},
{t:M,n:'basic_stringbuf',u:'#`',p:1},
{t:M,n:'stringbuf',u:'#`',p:2},
{t:M,n:'wstringbuf',u:'#`',p:3},
{t:M,n:'basic_istringstream',u:'#`',p:4},
{t:M,n:'istringstream',u:'#`',p:5},
{t:M,n:'wistringstream',u:'#`',p:6},
{t:M,n:'basic_ostringstream',u:'#`',p:7},
{t:M,n:'ostringstream',u:'#`',p:8},
{t:M,n:'wostringstream',u:'#`',p:9},
{t:M,n:'basic_stringstream',u:'#`',p:10},
{t:M,n:'stringstream',u:'#`',p:11},
{t:M,n:'wstringstream',u:'#`',p:12},
{t:M,n:'char_type',u:'#basic_stringbuf::`',p:13},
{t:M,n:'traits_type',u:'#basic_stringbuf::`',p:14},
{t:M,n:'int_type',u:'#basic_stringbuf::`',p:15},
{t:M,n:'pos_type',u:'#basic_stringbuf::`',p:16},
{t:M,n:'off_type',u:'#basic_stringbuf::`',p:17},
{t:M,n:'allocator_type',u:'#basic_stringbuf::`',p:18},
{t:M,n:'basic_stringbuf',u:'#`::basic_stringbuf',p:19},
{t:M,n:'str',u:'#basic_`ingbuf::str',p:20},
{t:M,n:'seekoff',u:'#basic_stringbuf::`',p:21},
{t:M,n:'seekpos',u:'#basic_stringbuf::`',p:22},
{t:M,n:'underflow',u:'#basic_stringbuf::`',p:23},
{t:M,n:'pbackfail',u:'#basic_stringbuf::`',p:24},
{t:M,n:'overflow',u:'#basic_stringbuf::`',p:25},
{t:M,n:'stringbuf mode',u:'#`',p:26},
{t:M,n:'allocator_type',u:'#basic_istringstream::`',p:27},
{t:M,n:'basic_istringstream',u:'#`::basic_istringstream',p:28},
{t:M,n:'rdbuf',u:'#basic_istringstream::`',p:29},
{t:M,n:'str',u:'#basic_i`ingstream::str',p:30},
{t:M,n:'allocator_type',u:'#basic_ostringstream::`',p:31},
{t:M,n:'basic_ostringstream',u:'#`::basic_ostringstream',p:32},
{t:M,n:'rdbuf',u:'#basic_ostringstream::`',p:33},
{t:M,n:'str',u:'#basic_o`ingstream::str',p:34},
{t:M,n:'allocator_type',u:'#basic_stringstream::`',p:35},
{t:M,n:'basic_stringstream',u:'#`::basic_stringstream',p:36},
{t:M,n:'rdbuf',u:'#basic_stringstream::`',p:37},
{t:M,n:'str',u:'#basic_`ingstream::str',p:38},
{t:P,n:'stack',c:'?manual=compleat&page=`.html',p:700},
{t:M,n:'stack',u:'#`',p:1},
{t:M,n:'operator==',u:'#`',p:2},
{t:M,n:'operator!=',u:'#`',p:3},
{t:M,n:'operator<',u:'#`',p:4},
{t:M,n:'operator>',u:'#`',p:5},
{t:M,n:'operator<=',u:'#`',p:6},
{t:M,n:'operator>=',u:'#`',p:7},
{t:M,n:'c',u:'#sta`k::c',p:8},
{t:M,n:'container_type',u:'#stack::`',p:9},
{t:M,n:'value_type',u:'#stack::`',p:10},
{t:M,n:'size_type',u:'#stack::`',p:11},
{t:M,n:'reference',u:'#stack::`',p:12},
{t:M,n:'const_reference',u:'#stack::`',p:13},
{t:M,n:'stack',u:'#`::stack',p:14},
{t:M,n:'empty',u:'#stack::`',p:15},
{t:M,n:'size',u:'#stack::`',p:16},
{t:M,n:'top',u:'#stack::`',p:17},
{t:M,n:'push',u:'#stack::`',p:18},
{t:M,n:'pop',u:'#stack::`',p:19},
{t:P,n:'stdexcept',c:'?manual=compleat&page=stdexcep.html',p:720},
{t:M,n:'logic_error',u:'#`',p:1},
{t:M,n:'domain_error',u:'#`',p:2},
{t:M,n:'invalid_argument',u:'#`',p:3},
{t:M,n:'length_error',u:'#`',p:4},
{t:M,n:'out_of_range',u:'#`',p:5},
{t:M,n:'runtime_error',u:'#`',p:6},
{t:M,n:'range_error',u:'#`',p:7},
{t:M,n:'overflow_error',u:'#`',p:8},
{t:M,n:'underflow_error',u:'#`',p:9},
{t:P,n:'streambuf',c:'?manual=compleat&page=streambu.html',p:730},
{t:M,n:'basic_streambuf',u:'#`',p:1},
{t:M,n:'streambuf',u:'#`',p:2},
{t:M,n:'wstreambuf',u:'#`',p:3},
{t:P,n:'string',c:'?manual=compleat&page=`2.html',p:734},
{t:M,n:'basic_string',u:'#`',p:1},
{t:M,n:'char_traits',u:'#`',p:2},
{t:M,n:'char_traits<char>',u:'#`',p:3},
{t:M,n:'char_traits<wchar_t>',u:'#`',p:4},
{t:M,n:'getline',u:'#`',p:5},
{t:M,n:'operator+',u:'#`',p:6},
{t:M,n:'operator!=',u:'#`',p:7},
{t:M,n:'operator==',u:'#`',p:8},
{t:M,n:'operator<',u:'#`',p:9},
{t:M,n:'operator<<',u:'#`',p:10},
{t:M,n:'operator<=',u:'#`',p:11},
{t:M,n:'operator>',u:'#`',p:12},
{t:M,n:'operator>=',u:'#`',p:13},
{t:M,n:'operator>>',u:'#`',p:14},
{t:M,n:'string',u:'#`',p:15},
{t:M,n:'swap',u:'#`',p:16},
{t:M,n:'wstring',u:'#`',p:17},
{t:P,n:'strstream',c:'?manual=compleat&page=strstrea.html',p:752},
{t:M,n:'strstreambuf',u:'#`',p:1},
{t:M,n:'istrstream',u:'#`',p:2},
{t:M,n:'ostrstream',u:'#`',p:3},
{t:M,n:'strstream',u:'#`',p:4},
{t:M,n:'strstreambuf',u:'#`::strstreambuf',p:5},
{t:M,n:'freeze',u:'#strstreambuf::`',p:6},
{t:M,n:'str',u:'#`streambuf::str',p:7},
{t:M,n:'pcount',u:'#strstreambuf::`',p:8},
{t:M,n:'seekoff',u:'#strstreambuf::`',p:9},
{t:M,n:'seekpos',u:'#strstreambuf::`',p:10},
{t:M,n:'underflow',u:'#strstreambuf::`',p:11},
{t:M,n:'pbackfail',u:'#strstreambuf::`',p:12},
{t:M,n:'overflow',u:'#strstreambuf::`',p:13},
{t:M,n:'strstreambuf mode',u:'#`',p:14},
{t:M,n:'strstreambuf allocation',u:'#`',p:15},
{t:M,n:'istrstream',u:'#`::istrstream',p:16},
{t:M,n:'rdbuf',u:'#istrstream::`',p:17},
{t:M,n:'str',u:'#i`stream::str',p:18},
{t:M,n:'ostrstream',u:'#`::ostrstream',p:19},
{t:M,n:'rdbuf',u:'#ostrstream::`',p:20},
{t:M,n:'freeze',u:'#ostrstream::`',p:21},
{t:M,n:'str',u:'#o`stream::str',p:22},
{t:M,n:'pcount',u:'#ostrstream::`',p:23},
{t:M,n:'strstream',u:'#`::strstream',p:24},
{t:M,n:'rdbuf',u:'#strstream::`',p:25},
{t:M,n:'freeze',u:'#strstream::`',p:26},
{t:M,n:'str',u:'#`stream::str',p:27},
{t:M,n:'pcount',u:'#strstream::`',p:28},
{t:P,n:'tuple',c:'?manual=compleat&page=`.html',p:781},
{t:M,n:'get',u:'#`',p:1},
{t:M,n:'make_tuple',u:'#`',p:2},
{t:M,n:'tie',u:'#`',p:3},
{t:M,n:'tuple',u:'#`',p:4},
{t:M,n:'tuple_element',u:'#`',p:5},
{t:M,n:'tuple_size',u:'#`',p:6},
{t:M,n:'operator==',u:'#`',p:7},
{t:M,n:'operator!=',u:'#`',p:8},
{t:M,n:'operator<',u:'#`',p:9},
{t:M,n:'operator<=',u:'#`',p:10},
{t:M,n:'operator>',u:'#`',p:11},
{t:M,n:'operator>=',u:'#`',p:12},
{t:P,n:'typeinfo',c:'?manual=compleat&page=`.html',p:794},
{t:M,n:'type_info',u:'#`',p:1},
{t:M,n:'bad_cast',u:'#`',p:2},
{t:M,n:'bad_typeid',u:'#`',p:3},
{t:M,n:'operator==',u:'#type_info::`',p:4},
{t:M,n:'operator!=',u:'#type_info::`',p:5},
{t:M,n:'before',u:'#type_info::`',p:6},
{t:M,n:'name',u:'#type_info::`',p:7},
{t:M,n:'collating order',u:'#` for types',p:8},
{t:M,n:'name',u:'#`s for types',p:9},
{t:P,n:'type_traits',c:'?manual=compleat&page=typetrait.html',p:804},
{t:M,n:'add_const',u:'#`',p:1},
{t:M,n:'add_cv',u:'#`',p:2},
{t:M,n:'add_pointer',u:'#`',p:3},
{t:M,n:'add_reference',u:'#`',p:4},
{t:M,n:'add_volatile',u:'#`',p:5},
{t:M,n:'aligned_storage',u:'#`',p:6},
{t:M,n:'alignment_of',u:'#`',p:7},
{t:M,n:'extent',u:'#`',p:8},
{t:M,n:'has_nothrow_assign',u:'#`',p:9},
{t:M,n:'has_nothrow_constructor',u:'#`',p:10},
{t:M,n:'has_nothrow_copy',u:'#`',p:11},
{t:M,n:'has_trivial_assign',u:'#`',p:12},
{t:M,n:'has_trivial_constructor',u:'#`',p:13},
{t:M,n:'has_trivial_copy',u:'#`',p:14},
{t:M,n:'has_trivial_destructor',u:'#`',p:15},
{t:M,n:'has_virtual_destructor',u:'#`',p:16},
{t:M,n:'is_abstract',u:'#`',p:17},
{t:M,n:'is_arithmetic',u:'#`',p:18},
{t:M,n:'is_array',u:'#`',p:19},
{t:M,n:'is_base_of',u:'#`',p:20},
{t:M,n:'is_class',u:'#`',p:21},
{t:M,n:'is_compound',u:'#`',p:22},
{t:M,n:'is_const',u:'#`',p:23},
{t:M,n:'is_convertible',u:'#`',p:24},
{t:M,n:'is_empty',u:'#`',p:25},
{t:M,n:'is_enum',u:'#`',p:26},
{t:M,n:'is_floating_point',u:'#`',p:27},
{t:M,n:'is_function',u:'#`',p:28},
{t:M,n:'is_fundamental',u:'#`',p:29},
{t:M,n:'is_integral',u:'#`',p:30},
{t:M,n:'is_member_function_pointer',u:'#`',p:31},
{t:M,n:'is_member_object_pointer',u:'#`',p:32},
{t:M,n:'is_member_pointer',u:'#`',p:33},
{t:M,n:'is_object',u:'#`',p:34},
{t:M,n:'is_pod',u:'#`',p:35},
{t:M,n:'is_pointer',u:'#`',p:36},
{t:M,n:'is_polymorphic',u:'#`',p:37},
{t:M,n:'is_reference',u:'#`',p:38},
{t:M,n:'is_same',u:'#`',p:39},
{t:M,n:'is_scalar',u:'#`',p:40},
{t:M,n:'is_signed',u:'#`',p:41},
{t:M,n:'is_union',u:'#`',p:42},
{t:M,n:'is_unsigned',u:'#`',p:43},
{t:M,n:'is_void',u:'#`',p:44},
{t:M,n:'is_volatile',u:'#`',p:45},
{t:M,n:'rank',u:'#`',p:46},
{t:M,n:'remove_all_extents',u:'#`',p:47},
{t:M,n:'remove_const',u:'#`',p:48},
{t:M,n:'remove_cv',u:'#`',p:49},
{t:M,n:'remove_extent',u:'#`',p:50},
{t:M,n:'remove_pointer',u:'#`',p:51},
{t:M,n:'remove_reference',u:'#`',p:52},
{t:M,n:'remove_volatile',u:'#`',p:53},
{t:M,n:'false_type',u:'#`',p:54},
{t:M,n:'integral_constant',u:'#`',p:55},
{t:M,n:'true_type',u:'#`',p:56},
{t:P,n:'unordered_map',c:'?manual=compleat&page=`.html',p:861},
{t:M,n:'unordered_map',u:'#`',p:1},
{t:M,n:'unordered_multimap',u:'#`',p:2},
{t:M,n:'swap',u:'#`',p:3},
{t:P,n:'unordered_set',c:'?manual=compleat&page=`.html',p:865},
{t:M,n:'unordered_set',u:'#`',p:1},
{t:M,n:'unordered_multiset',u:'#`',p:2},
{t:M,n:'swap',u:'#`',p:3},
{t:P,n:'utility',c:'?manual=compleat&page=`.html',p:869},
{t:M,n:'make_pair',u:'#`',p:1},
{t:M,n:'operator!==',u:'#operator!=',p:2},
{t:M,n:'operator==',u:'#`',p:3},
{t:M,n:'operator<',u:'#`',p:4},
{t:M,n:'operator<=',u:'#`',p:5},
{t:M,n:'operator>',u:'#`',p:6},
{t:M,n:'operator>=',u:'#`',p:7},
{t:M,n:'pair',u:'#`',p:8},
{t:M,n:'get',u:'#`',p:9},
{t:M,n:'tuple_element',u:'#`',p:10},
{t:M,n:'tuple_size',u:'#`',p:11},
{t:P,n:'valarray',c:'?manual=compleat&page=`.html',p:881},
{t:M,n:'gslice',u:'#`',p:1},
{t:M,n:'gslice_array',u:'#`',p:2},
{t:M,n:'indirect_array',u:'#`',p:3},
{t:M,n:'mask_array',u:'#`',p:4},
{t:M,n:'slice',u:'#`',p:5},
{t:M,n:'slice_array',u:'#`',p:6},
{t:M,n:'valarray',u:'#`',p:7},
{t:M,n:'valarray<bool>',u:'#`',p:8},
{t:M,n:'abs',u:'#`',p:9},
{t:M,n:'acos',u:'#`',p:10},
{t:M,n:'asin',u:'#`',p:11},
{t:M,n:'atan',u:'#`',p:12},
{t:M,n:'atan2',u:'#`',p:13},
{t:M,n:'cos',u:'#`',p:14},
{t:M,n:'cosh',u:'#`',p:15},
{t:M,n:'exp',u:'#`',p:16},
{t:M,n:'log',u:'#`',p:17},
{t:M,n:'log10',u:'#`',p:18},
{t:M,n:'operator!=',u:'#`',p:19},
{t:M,n:'operator%',u:'#`',p:20},
{t:M,n:'operator&',u:'#`',p:21},
{t:M,n:'operator&&',u:'#`',p:22},
{t:M,n:'operator>',u:'#`',p:23},
{t:M,n:'operator>>',u:'#`',p:24},
{t:M,n:'operator>=',u:'#`',p:25},
{t:M,n:'operator<',u:'#`',p:26},
{t:M,n:'operator<<',u:'#`',p:27},
{t:M,n:'operator<=',u:'#`',p:28},
{t:M,n:'operator*',u:'#`',p:29},
{t:M,n:'operator+',u:'#`',p:30},
{t:M,n:'operator-',u:'#`',p:31},
{t:M,n:'operator/',u:'#`',p:32},
{t:M,n:'operator==',u:'#`',p:33},
{t:M,n:'operator^',u:'#`',p:34},
{t:M,n:'operator|',u:'#`',p:35},
{t:M,n:'operator||',u:'#`',p:36},
{t:M,n:'pow',u:'#`',p:37},
{t:M,n:'sin',u:'#`',p:38},
{t:M,n:'sinh',u:'#`',p:39},
{t:M,n:'sqrt',u:'#`',p:40},
{t:M,n:'tan',u:'#`',p:41},
{t:M,n:'tanh',u:'#`',p:42},
{t:P,n:'vector',c:'?manual=compleat&page=`.html',p:924},
{t:M,n:'vector',u:'#`',p:1},
{t:M,n:'vector<bool>',u:'#`',p:2},
{t:M,n:'operator==',u:'#`',p:3},
{t:M,n:'operator!=',u:'#`',p:4},
{t:M,n:'operator<',u:'#`',p:5},
{t:M,n:'operator>',u:'#`',p:6},
{t:M,n:'operator<=',u:'#`',p:7},
{t:M,n:'operator>=',u:'#`',p:8},
{t:M,n:'swap',u:'#`',p:9},
{t:M,n:'size',u:'#vector::`',p:10},
{t:M,n:'begin',u:'#vector::`',p:11},
{t:M,n:'end',u:'#vector::`',p:12},
{t:M,n:'swap',u:'#vector::`',p:13},
null);
finishModuleProcessing('module_dinkumc.js',tmp);