/*
    ####             #    #     # #
    #   #            #    #       #          The FreeWare C library for 
    #   #  ##   ###  #  # #     # ###             RISC OS machines
    #   # #  # #     # #  #     # #  #   ___________________________________
    #   # ####  ###  ##   #     # #  #                                      
    #   # #        # # #  #     # #  #    Please refer to the accompanying
    ####   ### ####  #  # ##### # ###    documentation for conditions of use
    ________________________________________________________________________

    File:    MsgTrans.LookupPS.c
    Author:  Copyright  1994 Tony Houghton
    Version: 1.01 (05 Nov 1994)
    Purpose: Match a token in a Messages file
*/

#include "Desk.MsgTrans.h"

Desk_MsgTrans_LookupPS(Desk_msgtrans_filedesc *filedesc, char *token,
                            char *buffer, int bufflen,
                            char *p0, char *p1, char *p2, char *p3)
{

  Desk_MessageTrans_Lookup(filedesc, token, &buffer, &bufflen,
                               p0, p1, p2, p3);

  /* NULL-terminate string */
  buffer[bufflen] = '\0';

  return NULL;
}
