Ignore:
Timestamp:
07/16/05 15:05:19 (19 years ago)
Author:
tim
Message:

Added new lightweight stack library

rewrote test program to use this instead of string concatenation/recursion.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/smb_deps.h

    r30 r31  
    2424 */
    2525
     26#include <stdlib.h>
    2627#include <stdbool.h>
    2728#include <stdio.h>
     29#include <string.h>
    2830#include <errno.h>
    2931#include <fcntl.h>
     
    3840void* zalloc(size_t size);
    3941void* zcalloc(size_t size, unsigned int count);
    40 void zerop(void* p);
    41 
    4242
    4343/* From includes.h */
     
    413413
    414414size_t sid_size(const DOM_SID *sid);
    415 static int sid_compare_auth(const DOM_SID *sid1, const DOM_SID *sid2);
     415int sid_compare_auth(const DOM_SID *sid1, const DOM_SID *sid2);
    416416int sid_compare(const DOM_SID *sid1, const DOM_SID *sid2);
    417417bool sid_equal(const DOM_SID *sid1, const DOM_SID *sid2);
Note: See TracChangeset for help on using the changeset viewer.